{
  "$schema": "https://schemastore.azurewebsites.net/schemas/json/sarif-2.1.0.json",
  "version": "2.1.0",
  "runs": [
    {
      "tool": {
        "driver": {
          "name": "CodeQL",
          "organization": "GitHub",
          "semanticVersion": "2.21.4",
          "notifications": [
            {
              "id": "cpp/baseline/expected-extracted-files",
              "name": "cpp/baseline/expected-extracted-files",
              "fullDescription": {
                "text": "Files appearing in the source archive that are expected to be extracted."
              },
              "shortDescription": {
                "text": "Expected extracted files"
              },
              "properties": {
                "tags": ["expected-extracted-files","telemetry"]
              }
            },
            {
              "id": "py/baseline/expected-extracted-files",
              "name": "py/baseline/expected-extracted-files",
              "fullDescription": {
                "text": "Files appearing in the source archive that are expected to be extracted."
              },
              "shortDescription": {
                "text": "Expected extracted files"
              },
              "properties": {
                "tags": ["expected-extracted-files","telemetry"]
              }
            },
            {
              "id": "js/baseline/expected-extracted-files",
              "name": "js/baseline/expected-extracted-files",
              "fullDescription": {
                "text": "Files appearing in the source archive that are expected to be extracted."
              },
              "shortDescription": {
                "text": "Expected extracted files"
              },
              "properties": {
                "tags": ["expected-extracted-files","telemetry"]
              }
            },
            {
              "id": "cpp/extractor/summary",
              "name": "cpp/extractor/summary",
              "fullDescription": {
                "text": "C++ extractor telemetry"
              }
            }
          ],
          "rules": [
            {
              "id": "cpp/misra/unused-limited-visibility-function",
              "name": "cpp/misra/unused-limited-visibility-function",
              "fullDescription": {
                "text": "Unused functions may indicate a coding error or require maintenance; functions that are unused with certain visibility have no effect on the program and should be removed."
              },
              "shortDescription": {
                "text": "RULE-0-2-4: Functions with limited visibility should be used at least once"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-2-4","scope/system","maintainability","correctness","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Unused functions may indicate a coding error or require maintenance; functions that\n              are unused with certain visibility have no effect on the program and should be\n              removed.",
                "id": "cpp/misra/unused-limited-visibility-function",
                "kind": "problem",
                "name": "RULE-0-2-4: Functions with limited visibility should be used at least once",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/poorly-formed-identifier",
              "name": "cpp/misra/poorly-formed-identifier",
              "fullDescription": {
                "text": "Identifiers shall not conflict with keywords, reserved names, or otherwise be poorly formed."
              },
              "shortDescription": {
                "text": "RULE-5-10-1: User-defined identifiers shall have an appropriate form"
              },
              "properties": {
                "tags": ["external/misra/id/rule-5-10-1","scope/single-translation-unit","readability","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Identifiers shall not conflict with keywords, reserved names, or otherwise be poorly\n              formed.",
                "id": "cpp/misra/poorly-formed-identifier",
                "kind": "problem",
                "name": "RULE-5-10-1: User-defined identifiers shall have an appropriate form",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
              "name": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
              "fullDescription": {
                "text": "A noexcept function should not attempt to propagate an exception to the calling function."
              },
              "shortDescription": {
                "text": "RULE-18-5-1: A noexcept function should not attempt to propagate an exception to the calling function"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-18-5-1","scope/system","external/misra/enforcement/undecidable","external/misra/obligation/advisory"],
                "description": "A noexcept function should not attempt to propagate an exception to the calling\n              function.",
                "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
                "kind": "path-problem",
                "name": "RULE-18-5-1: A noexcept function should not attempt to propagate an exception to the calling function",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/no-memory-functions-from-c-string",
              "name": "cpp/misra/no-memory-functions-from-c-string",
              "fullDescription": {
                "text": "Using memcpy, memmove or memcmp from <cstring> can result in undefined behavior due to overlapping memory, non-trivially copyable objects, or unequal comparison of logically equal objects."
              },
              "shortDescription": {
                "text": "RULE-24-5-2: The C++ Standard Library functions memcpy, memmove and memcmp from <cstring> shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-24-5-2","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Using memcpy, memmove or memcmp from <cstring> can result in undefined behavior due\n              to overlapping memory, non-trivially copyable objects, or unequal comparison of\n              logically equal objects.",
                "id": "cpp/misra/no-memory-functions-from-c-string",
                "kind": "problem",
                "name": "RULE-24-5-2: The C++ Standard Library functions memcpy, memmove and memcmp from <cstring> shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unused-parameter-misra-cpp",
              "name": "cpp/misra/unused-parameter-misra-cpp",
              "fullDescription": {
                "text": "Unused parameters can indicate a mistake when implementing the function."
              },
              "shortDescription": {
                "text": "RULE-0-2-2: There shall be no unused named parameters in both virtual and non-virtual functions"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-2-2","scope/single-translation-unit","readability","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Unused parameters can indicate a mistake when implementing the function.",
                "id": "cpp/misra/unused-parameter-misra-cpp",
                "kind": "problem",
                "name": "RULE-0-2-2: There shall be no unused named parameters in both virtual and non-virtual functions",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/include-directives-preceded-by-preprocessor-directives",
              "name": "cpp/misra/include-directives-preceded-by-preprocessor-directives",
              "fullDescription": {
                "text": "Using anything other than other pre-processor directives or comments before an '#include' directive makes the code more difficult to read."
              },
              "shortDescription": {
                "text": "RULE-19-0-3: #include directives should only be preceded by preprocessor directives or comments"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-19-0-3","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using anything other than other pre-processor directives or comments before an\n              '#include' directive makes the code more difficult to read.",
                "id": "cpp/misra/include-directives-preceded-by-preprocessor-directives",
                "kind": "problem",
                "name": "RULE-19-0-3: #include directives should only be preceded by preprocessor directives or comments",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/object-used-while-in-potentially-moved-from-state",
              "name": "cpp/misra/object-used-while-in-potentially-moved-from-state",
              "fullDescription": {
                "text": "Moved-from object shall not be read-accessed."
              },
              "shortDescription": {
                "text": "RULE-28-6-3: An object shall not be used while in a potentially moved-from state"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-28-6-3","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Moved-from object shall not be read-accessed.",
                "id": "cpp/misra/object-used-while-in-potentially-moved-from-state",
                "kind": "problem",
                "name": "RULE-28-6-3: An object shall not be used while in a potentially moved-from state",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/bit-fields-should-not-be-declared-misra-cpp",
              "name": "cpp/misra/bit-fields-should-not-be-declared-misra-cpp",
              "fullDescription": {
                "text": "The exact layout and the order of bits resulting from bit-fields in a struct is implementation-defined and therefore not portable."
              },
              "shortDescription": {
                "text": "RULE-12-2-1: Bit-fields should not be declared"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-12-2-1","scope/single-translation-unit","correctness","portability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "The exact layout and the order of bits resulting from bit-fields in a struct is\n              implementation-defined and therefore not portable.",
                "id": "cpp/misra/bit-fields-should-not-be-declared-misra-cpp",
                "kind": "problem",
                "name": "RULE-12-2-1: Bit-fields should not be declared",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/cast-removes-const-or-volatile-from-pointer-or-reference",
              "name": "cpp/misra/cast-removes-const-or-volatile-from-pointer-or-reference",
              "fullDescription": {
                "text": "A cast shall not remove any const or volatile qualification from the type accessed via a pointer or by reference."
              },
              "shortDescription": {
                "text": "RULE-8-2-3: A cast shall not remove any const or volatile qualification from the type accessed via a pointer or"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-3","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "A cast shall not remove any const or volatile qualification from the type accessed\n              via a pointer or by reference.",
                "id": "cpp/misra/cast-removes-const-or-volatile-from-pointer-or-reference",
                "kind": "problem",
                "name": "RULE-8-2-3: A cast shall not remove any const or volatile qualification from the type accessed via a pointer or",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
              "name": "cpp/misra/overriding-shall-specify-different-default-arguments",
              "fullDescription": {
                "text": "Parameters in an overriding virtual function shall not specify different default arguments."
              },
              "shortDescription": {
                "text": "RULE-13-3-2: Parameters in an overriding virtual function shall not specify different default arguments"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-13-3-2","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Parameters in an overriding virtual function shall not specify different default\n              arguments.",
                "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
                "kind": "problem",
                "name": "RULE-13-3-2: Parameters in an overriding virtual function shall not specify different default arguments",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
              "name": "cpp/misra/declarations-of-a-function-same-parameter-name",
              "fullDescription": {
                "text": "Parameters in some number of declarations or overrides of a function that do not have identical names can lead to developer confusion."
              },
              "shortDescription": {
                "text": "RULE-13-3-3: The parameters in all declarations or overrides of a function shall either be unnamed or have identical names"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-13-3-3","maintainability","readability","scope/system","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Parameters in some number of declarations or overrides of a function that do not\n              have identical names can lead to developer confusion.",
                "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
                "kind": "problem",
                "name": "RULE-13-3-3: The parameters in all declarations or overrides of a function shall either be unnamed or have identical names",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/type-aliases-declaration",
              "name": "cpp/misra/type-aliases-declaration",
              "fullDescription": {
                "text": "Using different type aliases on redeclarations can make code hard to understand and maintain."
              },
              "shortDescription": {
                "text": "RULE-6-9-1: The same type aliases shall be used in all declarations of the same entity"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-9-1","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Using different type aliases on redeclarations can make code hard to understand and\n              maintain.",
                "id": "cpp/misra/type-aliases-declaration",
                "kind": "problem",
                "name": "RULE-6-9-1: The same type aliases shall be used in all declarations of the same entity",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/no-conversion-from-bool",
              "name": "cpp/misra/no-conversion-from-bool",
              "fullDescription": {
                "text": "Converting a bool type (implicitly or explicitly) to another type can lead to unintended behavior and code obfuscation, particularly when using bitwise operators instead of logical operators."
              },
              "shortDescription": {
                "text": "RULE-7-0-1: There shall be no conversion from type bool"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-1","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Converting a bool type (implicitly or explicitly) to another type can lead to\n              unintended behavior and code obfuscation, particularly when using bitwise operators\n              instead of logical operators.",
                "id": "cpp/misra/no-conversion-from-bool",
                "kind": "problem",
                "name": "RULE-7-0-1: There shall be no conversion from type bool",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/if-else-if-end-condition",
              "name": "cpp/misra/if-else-if-end-condition",
              "fullDescription": {
                "text": "All if ... else if constructs shall be terminated with an else statement."
              },
              "shortDescription": {
                "text": "RULE-9-4-1: All if ... else if constructs shall be terminated with an else statement"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-9-4-1","readability","maintainability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "All if ... else if constructs shall be terminated with an else statement.",
                "id": "cpp/misra/if-else-if-end-condition",
                "kind": "problem",
                "name": "RULE-9-4-1: All if ... else if constructs shall be terminated with an else statement",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/exception-unfriendly-function-must-be-noexcept",
              "name": "cpp/misra/exception-unfriendly-function-must-be-noexcept",
              "fullDescription": {
                "text": "Throwing exceptions in constructors, destructors, copy-constructors, move constructors, assignments, and functions named swap, may result in implementation-defined behavior."
              },
              "shortDescription": {
                "text": "RULE-18-4-1: Exception-unfriendly functions shall be noexcept"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-18-4-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Throwing exceptions in constructors, destructors, copy-constructors, move\n              constructors, assignments, and functions named swap, may result in\n              implementation-defined behavior.",
                "id": "cpp/misra/exception-unfriendly-function-must-be-noexcept",
                "kind": "problem",
                "name": "RULE-18-4-1: Exception-unfriendly functions shall be noexcept",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unused-type-with-limited-visibility",
              "name": "cpp/misra/unused-type-with-limited-visibility",
              "fullDescription": {
                "text": "Types that are unused with limited visibility are unnecessary and should either be removed or may indicate a developer mistake."
              },
              "shortDescription": {
                "text": "RULE-0-2-3: Types with limited visibility should be used at least once"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-2-3","scope/single-translation-unit","maintainability","correctness","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Types that are unused with limited visibility are unnecessary and should either be\n              removed or may indicate a developer mistake.",
                "id": "cpp/misra/unused-type-with-limited-visibility",
                "kind": "problem",
                "name": "RULE-0-2-3: Types with limited visibility should be used at least once",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/bit-field-shall-have-an-appropriate-type",
              "name": "cpp/misra/bit-field-shall-have-an-appropriate-type",
              "fullDescription": {
                "text": "A bit-field shall have an appropriate type."
              },
              "shortDescription": {
                "text": "RULE-12-2-2: A bit-field shall have an appropriate type"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-12-2-2","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "A bit-field shall have an appropriate type.",
                "id": "cpp/misra/bit-field-shall-have-an-appropriate-type",
                "kind": "problem",
                "name": "RULE-12-2-2: A bit-field shall have an appropriate type",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
              "name": "cpp/misra/inappropriate-bitwise-or-shift-operands",
              "fullDescription": {
                "text": "Bitwise and shift operators should only be applied to operands of appropriate types and values to avoid implementation-defined or undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-7-0-4: The operands of bitwise operators and shift operators shall be appropriate"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-4","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Bitwise and shift operators should only be applied to operands of appropriate types\n              and values to avoid implementation-defined or undefined behavior.",
                "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
                "kind": "problem",
                "name": "RULE-7-0-4: The operands of bitwise operators and shift operators shall be appropriate",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
              "name": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
              "fullDescription": {
                "text": "When storage durations are not compatible between assigned pointers it can lead to referring to objects outside of their lifetime, which is undefined behaviour."
              },
              "shortDescription": {
                "text": "RULE-6-8-3: Do not assign the address of an object with automatic storage to an object that may persist after it's lifetime"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-8-3","correctness","security","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "When storage durations are not compatible between assigned pointers it can lead to\n              referring to objects outside of their lifetime, which is undefined behaviour.",
                "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
                "kind": "problem",
                "name": "RULE-6-8-3: Do not assign the address of an object with automatic storage to an object that may persist after it's lifetime",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/implicit-declaration-of-copy-constructor",
              "name": "cpp/misra/implicit-declaration-of-copy-constructor",
              "fullDescription": {
                "text": "Deprecated language features such as implicit declarations of copy constructors are only supported for backwards compatibility; these are considered bad practice, or have been superseded by better alternatives."
              },
              "shortDescription": {
                "text": "RULE-4-1-2: Implicit declaration of copy constructors is a deprecated language feature should not be used"
              },
              "properties": {
                "tags": ["external/misra/id/rule-4-1-2","scope/single-translation-unit","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Deprecated language features such as implicit declarations of copy constructors are\n              only supported for backwards compatibility; these are considered bad practice, or\n              have been superseded by better alternatives.",
                "id": "cpp/misra/implicit-declaration-of-copy-constructor",
                "kind": "problem",
                "name": "RULE-4-1-2: Implicit declaration of copy constructors is a deprecated language feature should not be used",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
              "name": "cpp/misra/redeclaration-of-static-constexpr-data-member",
              "fullDescription": {
                "text": "Deprecated language features such as redeclaration of static constexpr data members are only supported for backwards compatibility; these are considered bad practice, or have been superseded by better alternatives."
              },
              "shortDescription": {
                "text": "RULE-4-1-2: Redeclaration of static constexpr data members is a deprecated language feature should not be used"
              },
              "properties": {
                "tags": ["external/misra/id/rule-4-1-2","scope/single-translation-unit","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Deprecated language features such as redeclaration of static constexpr data members\n              are only supported for backwards compatibility; these are considered bad practice,\n              or have been superseded by better alternatives.",
                "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
                "kind": "problem",
                "name": "RULE-4-1-2: Redeclaration of static constexpr data members is a deprecated language feature should not be used",
                "precision": "high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/uninitialized-variable",
              "name": "cpp/misra/uninitialized-variable",
              "fullDescription": {
                "text": "All variables should be initialized, otherwise it may lead to a read of uninitialized memory which is undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-11-6-1: All variables should be initialized"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-11-6-1","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "All variables should be initialized, otherwise it may lead to a read of\n              uninitialized memory which is undefined behavior.",
                "id": "cpp/misra/uninitialized-variable",
                "kind": "problem",
                "name": "RULE-11-6-1: All variables should be initialized",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/dynamic-memory-managed-manually",
              "name": "cpp/misra/dynamic-memory-managed-manually",
              "fullDescription": {
                "text": "Manually allocating and deallocating is error prone and may cause memory safety bugs such as memory leaks, use-after-frees, or double frees."
              },
              "shortDescription": {
                "text": "RULE-21-6-2: Dynamic memory shall be managed automatically"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-21-6-2","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Manually allocating and deallocating is error prone and may cause memory safety bugs\n              such as memory leaks, use-after-frees, or double frees.",
                "id": "cpp/misra/dynamic-memory-managed-manually",
                "kind": "problem",
                "name": "RULE-21-6-2: Dynamic memory shall be managed automatically",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/no-c-style-or-functional-casts",
              "name": "cpp/misra/no-c-style-or-functional-casts",
              "fullDescription": {
                "text": "Using C-style casts or functional notation casts allows unsafe type conversions and makes code harder to maintain compared to using named casts like const_cast, dynamic_cast, static_cast and reinterpret_cast."
              },
              "shortDescription": {
                "text": "RULE-8-2-2: C-style casts and functional notation casts shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-2","scope/single-translation-unit","readability","correctness","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Using C-style casts or functional notation casts allows unsafe type conversions and\n              makes code harder to maintain compared to using named casts like const_cast,\n              dynamic_cast, static_cast and reinterpret_cast.",
                "id": "cpp/misra/no-c-style-or-functional-casts",
                "kind": "problem",
                "name": "RULE-8-2-2: C-style casts and functional notation casts shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/invariant-condition",
              "name": "cpp/misra/invariant-condition",
              "fullDescription": {
                "text": "Invariant expressions in controlling statements can indicate logic errors or redundant code."
              },
              "shortDescription": {
                "text": "RULE-0-0-2: Controlling expressions should not be invariant"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-0-2","scope/system","maintainability","correctness","external/misra/enforcement/undecidable","external/misra/obligation/advisory"],
                "description": "Invariant expressions in controlling statements can indicate logic errors or\n              redundant code.",
                "id": "cpp/misra/invariant-condition",
                "kind": "problem",
                "name": "RULE-0-0-2: Controlling expressions should not be invariant",
                "precision": "high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/variable-declared-array-type",
              "name": "cpp/misra/variable-declared-array-type",
              "fullDescription": {
                "text": "Using array type instead of container types can lead to difficulty manually managing size and accesses."
              },
              "shortDescription": {
                "text": "RULE-11-3-1: Variables of array type should not be declared"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-11-3-1","correctness","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using array type instead of container types can lead to difficulty manually managing\n              size and accesses.",
                "id": "cpp/misra/variable-declared-array-type",
                "kind": "problem",
                "name": "RULE-11-3-1: Variables of array type should not be declared",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unused-limited-visibility-variable",
              "name": "cpp/misra/unused-limited-visibility-variable",
              "fullDescription": {
                "text": "Variables that do not affect the runtime of a program indicate potential errors and interfere with code readability."
              },
              "shortDescription": {
                "text": "RULE-0-2-1: Variables with limited visibility should be used at least once"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-2-1","scope/single-translation-unit","correctness","readability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Variables that do not affect the runtime of a program indicate potential errors and\n              interfere with code readability.",
                "id": "cpp/misra/unused-limited-visibility-variable",
                "kind": "problem",
                "name": "RULE-0-2-1: Variables with limited visibility should be used at least once",
                "precision": "high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
              "name": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
              "fullDescription": {
                "text": "nullptr shall be the only form of the null-pointer-constant."
              },
              "shortDescription": {
                "text": "RULE-7-11-1: nullptr shall be the only form of the null-pointer-constant"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-11-1","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "nullptr shall be the only form of the null-pointer-constant.",
                "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
                "kind": "problem",
                "name": "RULE-7-11-1: nullptr shall be the only form of the null-pointer-constant",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/non-explicit-conversion-member",
              "name": "cpp/misra/non-explicit-conversion-member",
              "fullDescription": {
                "text": "Implicit conversions can lead to unexpected behavior that is preventable by declaring conversion operators and constructors as explicit."
              },
              "shortDescription": {
                "text": "RULE-15-1-3: Conversion operators and constructors that are callable with a single argument shall be explicit"
              },
              "properties": {
                "tags": ["external/misra/id/rule-15-1-3","scope/single-translation-unit","correctness","readability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Implicit conversions can lead to unexpected behavior that is preventable by\n              declaring conversion operators and constructors as explicit.",
                "id": "cpp/misra/non-explicit-conversion-member",
                "kind": "problem",
                "name": "RULE-15-1-3: Conversion operators and constructors that are callable with a single argument shall be explicit",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/inherited-overridable-member-function",
              "name": "cpp/misra/inherited-overridable-member-function",
              "fullDescription": {
                "text": "An overriding member function definition thats hides an overload of the overridden inherited member function can result in unexpected behavior."
              },
              "shortDescription": {
                "text": "RULE-6-4-2: Member function hides inherited member function"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-4-2","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "An overriding member function definition thats hides an overload of the overridden\n              inherited member function can result in unexpected behavior.",
                "id": "cpp/misra/inherited-overridable-member-function",
                "kind": "problem",
                "name": "RULE-6-4-2: Member function hides inherited member function",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/inherited-non-overridable-member-function",
              "name": "cpp/misra/inherited-non-overridable-member-function",
              "fullDescription": {
                "text": "A non-overriding member function definition that hides an inherited member function can result in unexpected behavior."
              },
              "shortDescription": {
                "text": "RULE-6-4-2: Member function hides inherited member function"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-4-2","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "A non-overriding member function definition that hides an inherited member function\n              can result in unexpected behavior.",
                "id": "cpp/misra/inherited-non-overridable-member-function",
                "kind": "problem",
                "name": "RULE-6-4-2: Member function hides inherited member function",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/use-single-local-declarators",
              "name": "cpp/misra/use-single-local-declarators",
              "fullDescription": {
                "text": "A declaration should not declare more than one variable or member variable."
              },
              "shortDescription": {
                "text": "RULE-10-0-1: Multiple declarations in the same local statement"
              },
              "defaultConfiguration": {
                "level": "note"
              },
              "properties": {
                "tags": ["external/misra/id/rule-10-0-1","readability","maintainability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "A declaration should not declare more than one variable or member variable.",
                "id": "cpp/misra/use-single-local-declarators",
                "kind": "problem",
                "name": "RULE-10-0-1: Multiple declarations in the same local statement",
                "precision": "very-high",
                "problem.severity": "recommendation"
              }
            },
            {
              "id": "cpp/misra/global-variable-used",
              "name": "cpp/misra/global-variable-used",
              "fullDescription": {
                "text": "Global variables can be accessed and modified from distant and unclear points in the code, creating a risk of data races and unexpected behavior."
              },
              "shortDescription": {
                "text": "RULE-6-7-2: Global variables shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-7-2","scope/single-translation-unit","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Global variables can be accessed and modified from distant and unclear points in the\n              code, creating a risk of data races and unexpected behavior.",
                "id": "cpp/misra/global-variable-used",
                "kind": "problem",
                "name": "RULE-6-7-2: Global variables shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/no-signedness-change-from-promotion",
              "name": "cpp/misra/no-signedness-change-from-promotion",
              "fullDescription": {
                "text": "Integral promotion and usual arithmetic conversions that change operand signedness or type category may cause unexpected behavior or undefined behavior when operations overflow."
              },
              "shortDescription": {
                "text": "RULE-7-0-5: Integral promotion and the usual arithmetic conversions shall not change the signedness or the type"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-5","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Integral promotion and usual arithmetic conversions that change operand signedness\n              or type category may cause unexpected behavior or undefined behavior when operations\n              overflow.",
                "id": "cpp/misra/no-signedness-change-from-promotion",
                "kind": "problem",
                "name": "RULE-7-0-5: Integral promotion and the usual arithmetic conversions shall not change the signedness or the type",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/functions-call-themselves-either-directly-or-indirectly",
              "name": "cpp/misra/functions-call-themselves-either-directly-or-indirectly",
              "fullDescription": {
                "text": "Functions shall not call themselves, either directly or indirectly."
              },
              "shortDescription": {
                "text": "RULE-8-2-10: Functions shall not call themselves, either directly or indirectly"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-10","scope/system","external/misra/enforcement/undecidable","external/misra/obligation/required"],
                "description": "Functions shall not call themselves, either directly or indirectly.",
                "id": "cpp/misra/functions-call-themselves-either-directly-or-indirectly",
                "kind": "problem",
                "name": "RULE-8-2-10: Functions shall not call themselves, either directly or indirectly",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/character-handling-function-restrictions",
              "name": "cpp/misra/character-handling-function-restrictions",
              "fullDescription": {
                "text": "Using character classification and case mapping functions from <cctype> and <cwctype> causes undefined behavior when arguments are not representable as unsigned char or not equal to EOF."
              },
              "shortDescription": {
                "text": "RULE-24-5-1: The character handling functions from <cctype> and <cwctype> shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-24-5-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Using character classification and case mapping functions from <cctype> and\n              <cwctype> causes undefined behavior when arguments are not representable as unsigned\n              char or not equal to EOF.",
                "id": "cpp/misra/character-handling-function-restrictions",
                "kind": "problem",
                "name": "RULE-24-5-1: The character handling functions from <cctype> and <cwctype> shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/signed-integer-overflow",
              "name": "cpp/misra/signed-integer-overflow",
              "fullDescription": {
                "text": "Signed integer overflow or underflow from arithmetic operations results in critical unspecified behavior."
              },
              "shortDescription": {
                "text": "RULE-4-1-3: Signed integer overflow leads to critical unspecified behavior"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-4-1-3","correctness","scope/system","external/misra/enforcement/undecidable","external/misra/obligation/required"],
                "description": "Signed integer overflow or underflow from arithmetic operations results in critical\n              unspecified behavior.",
                "id": "cpp/misra/signed-integer-overflow",
                "kind": "problem",
                "name": "RULE-4-1-3: Signed integer overflow leads to critical unspecified behavior",
                "precision": "medium",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/non-static-member-not-init-before-use",
              "name": "cpp/misra/non-static-member-not-init-before-use",
              "fullDescription": {
                "text": "Explicit initialization of all non-static data members reduces the risk of an invalid state existing after successful construction."
              },
              "shortDescription": {
                "text": "RULE-15-1-4: All direct, non-static data members of a class should be initialized before the class object is accessible"
              },
              "properties": {
                "tags": ["external/misra/id/rule-15-1-4","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Explicit initialization of all non-static data members reduces the risk of an\n              invalid state existing after successful construction.",
                "id": "cpp/misra/non-static-member-not-init-before-use",
                "kind": "problem",
                "name": "RULE-15-1-4: All direct, non-static data members of a class should be initialized before the class object is accessible",
                "precision": "high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/template-specialization-wrong-location",
              "name": "cpp/misra/template-specialization-wrong-location",
              "fullDescription": {
                "text": "Template specializations must be defined in the same file as the primary template or where a specialized type is defined to ensure visibility and avoid ODR violations."
              },
              "shortDescription": {
                "text": "RULE-6-2-3: Template specializations in wrong location"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-2-3","correctness","maintainability","scope/system","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Template specializations must be defined in the same file as the primary template or\n              where a specialized type is defined to ensure visibility and avoid ODR violations.",
                "id": "cpp/misra/template-specialization-wrong-location",
                "kind": "problem",
                "name": "RULE-6-2-3: Template specializations in wrong location",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/duplicate-type-definitions",
              "name": "cpp/misra/duplicate-type-definitions",
              "fullDescription": {
                "text": "Defining a type with the same fully qualified name in multiple files increases the risk of ODR violations and undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-6-2-3: Duplicate type definitions across files"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-2-3","correctness","maintainability","scope/system","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Defining a type with the same fully qualified name in multiple files increases the\n              risk of ODR violations and undefined behavior.",
                "id": "cpp/misra/duplicate-type-definitions",
                "kind": "problem",
                "name": "RULE-6-2-3: Duplicate type definitions across files",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/appropriate-structure-of-switch-statement",
              "name": "cpp/misra/appropriate-structure-of-switch-statement",
              "fullDescription": {
                "text": "A switch statement should have an appropriate structure with proper cases, default labels, and break statements to ensure clear control flow and prevent unintended fall-through behavior."
              },
              "shortDescription": {
                "text": "RULE-9-4-2: The structure of a switch statement shall be appropriate"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-9-4-2","correctness","maintainability","readability","external/misra/allocated-target/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "A switch statement should have an appropriate structure with proper cases, default\n              labels, and break statements to ensure clear control flow and prevent unintended\n              fall-through behavior.",
                "id": "cpp/misra/appropriate-structure-of-switch-statement",
                "kind": "problem",
                "name": "RULE-9-4-2: The structure of a switch statement shall be appropriate",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
              "name": "cpp/misra/reinterpret-cast-shall-not-be-used",
              "fullDescription": {
                "text": "reinterpret_cast shall not be used."
              },
              "shortDescription": {
                "text": "RULE-8-2-5: reinterpret_cast shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-5","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "reinterpret_cast shall not be used.",
                "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
                "kind": "problem",
                "name": "RULE-8-2-5: reinterpret_cast shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
              "name": "cpp/misra/invalid-operator-overloaded-as-member-function",
              "fullDescription": {
                "text": "Function resolution of operators overloaded as member functions is dependent on ordering and available conversions, which can lead to unexpected behavior."
              },
              "shortDescription": {
                "text": "RULE-16-6-1: Symmetrical operators should only be implemented as non-member functions"
              },
              "properties": {
                "tags": ["external/misra/id/rule-16-6-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Function resolution of operators overloaded as member functions is dependent on\n              ordering and available conversions, which can lead to unexpected behavior.",
                "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
                "kind": "problem",
                "name": "RULE-16-6-1: Symmetrical operators should only be implemented as non-member functions",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/loop-body-compound-condition",
              "name": "cpp/misra/loop-body-compound-condition",
              "fullDescription": {
                "text": "If the body of a loop is not enclosed in braces, then this can lead to incorrect execution, and hard for developers to maintain."
              },
              "shortDescription": {
                "text": "RULE-9-3-1: The statement forming the body of a loop shall be a compound statement"
              },
              "defaultConfiguration": {
                "level": "note"
              },
              "properties": {
                "tags": ["external/misra/id/rule-9-3-1","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "If the body of a loop is not enclosed in braces, then this can lead to incorrect\n              execution, and hard for developers to maintain.",
                "id": "cpp/misra/loop-body-compound-condition",
                "kind": "problem",
                "name": "RULE-9-3-1: The statement forming the body of a loop shall be a compound statement",
                "precision": "very-high",
                "problem.severity": "recommendation"
              }
            },
            {
              "id": "cpp/misra/member-specifiers-not-used-appropriately",
              "name": "cpp/misra/member-specifiers-not-used-appropriately",
              "fullDescription": {
                "text": "Appropriate use of specifiers on member functions more clearly indicate the intention of the function."
              },
              "shortDescription": {
                "text": "RULE-13-3-1: User-declared member functions shall use the virtual, override and final specifiers appropriately"
              },
              "properties": {
                "tags": ["external/misra/id/rule-13-3-1","scope/single-translation-unit","readability","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Appropriate use of specifiers on member functions more clearly indicate the\n              intention of the function.",
                "id": "cpp/misra/member-specifiers-not-used-appropriately",
                "kind": "problem",
                "name": "RULE-13-3-1: User-declared member functions shall use the virtual, override and final specifiers appropriately",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/local-variable-static-storage-duration",
              "name": "cpp/misra/local-variable-static-storage-duration",
              "fullDescription": {
                "text": "Local variables that have static storage duration can be harder to reason about and can lead to undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-6-7-1: Local variables shall not have static storage duration"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-7-1","correctness","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Local variables that have static storage duration can be harder to reason about and\n              can lead to undefined behavior.",
                "id": "cpp/misra/local-variable-static-storage-duration",
                "kind": "problem",
                "name": "RULE-6-7-1: Local variables shall not have static storage duration",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/std-move-with-non-const-lvalue",
              "name": "cpp/misra/std-move-with-non-const-lvalue",
              "fullDescription": {
                "text": "Calling std::move on a const lvalue will not result in a move, and calling std::move on an rvalue is redundant."
              },
              "shortDescription": {
                "text": "RULE-28-6-1: The argument to std::move shall be a non-const lvalue"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-28-6-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Calling std::move on a const lvalue will not result in a move, and calling std::move\n              on an rvalue is redundant.",
                "id": "cpp/misra/std-move-with-non-const-lvalue",
                "kind": "problem",
                "name": "RULE-28-6-1: The argument to std::move shall be a non-const lvalue",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/copy-and-move-assignments-shall-handle-self-assignment",
              "name": "cpp/misra/copy-and-move-assignments-shall-handle-self-assignment",
              "fullDescription": {
                "text": "User-provided copy assignment operators and move assignment operators shall handle self-assignment."
              },
              "shortDescription": {
                "text": "DIR-15-8-1: User-provided copy assignment operators and move assignment operators shall handle self-assignment"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/dir-15-8-1","external/misra/allocated-target/implementation","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "User-provided copy assignment operators and move assignment operators shall handle\n              self-assignment.",
                "id": "cpp/misra/copy-and-move-assignments-shall-handle-self-assignment",
                "kind": "problem",
                "name": "DIR-15-8-1: User-provided copy assignment operators and move assignment operators shall handle self-assignment",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/improperly-provided-special-member-functions",
              "name": "cpp/misra/improperly-provided-special-member-functions",
              "fullDescription": {
                "text": "Incorrect provision of special member functions can lead to unexpected or undefined behavior when objects of the class are copied, moved, or destroyed."
              },
              "shortDescription": {
                "text": "RULE-15-0-1: Special member functions shall be provided appropriately"
              },
              "properties": {
                "tags": ["external/misra/id/rule-15-0-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Incorrect provision of special member functions can lead to unexpected or undefined\n              behavior when objects of the class are copied, moved, or destroyed.",
                "id": "cpp/misra/improperly-provided-special-member-functions",
                "kind": "problem",
                "name": "RULE-15-0-1: Special member functions shall be provided appropriately",
                "precision": "medium",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/function-pointer-conversion-context",
              "name": "cpp/misra/function-pointer-conversion-context",
              "fullDescription": {
                "text": "Converting a function type to a pointer-to-function type outside of static_cast or assignment to a pointer-to-function object creates ambiguous behavior and potential unintended effects."
              },
              "shortDescription": {
                "text": "RULE-7-11-3: A conversion from function type to pointer-to-function type shall only occur in appropriate contexts"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-11-3","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Converting a function type to a pointer-to-function type outside of static_cast or\n              assignment to a pointer-to-function object creates ambiguous behavior and potential\n              unintended effects.",
                "id": "cpp/misra/function-pointer-conversion-context",
                "kind": "problem",
                "name": "RULE-7-11-3: A conversion from function type to pointer-to-function type shall only occur in appropriate contexts",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/no-pointer-to-integral-cast",
              "name": "cpp/misra/no-pointer-to-integral-cast",
              "fullDescription": {
                "text": "Casting between pointer types and integral types makes code behavior harder to understand and may cause pointer tracking tools to become unreliable."
              },
              "shortDescription": {
                "text": "RULE-8-2-7: A cast should not convert a pointer type to an integral type"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-7","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Casting between pointer types and integral types makes code behavior harder to\n              understand and may cause pointer tracking tools to become unreliable.",
                "id": "cpp/misra/no-pointer-to-integral-cast",
                "kind": "problem",
                "name": "RULE-8-2-7: A cast should not convert a pointer type to an integral type",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unused-return-value-misra-cpp",
              "name": "cpp/misra/unused-return-value-misra-cpp",
              "fullDescription": {
                "text": "The result of a non-void function shall be used if called with function call syntax."
              },
              "shortDescription": {
                "text": "RULE-0-1-2: The value returned by a function shall be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-1-2","scope/single-translation-unit","correctness","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "The result of a non-void function shall be used if called with function call syntax.",
                "id": "cpp/misra/unused-return-value-misra-cpp",
                "kind": "problem",
                "name": "RULE-0-1-2: The value returned by a function shall be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/internal-linkage-specified-appropriately",
              "name": "cpp/misra/internal-linkage-specified-appropriately",
              "fullDescription": {
                "text": "Using certain specifiers or declaring entities with internal linkage in certain namespaces can lead to confusion as to the linkage of the entity and can cause code to be more difficult to read."
              },
              "shortDescription": {
                "text": "RULE-6-5-2: Internal linkage should be specified appropriately"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-5-2","correctness","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using certain specifiers or declaring entities with internal linkage in certain\n              namespaces can lead to confusion as to the linkage of the entity and can cause code\n              to be more difficult to read.",
                "id": "cpp/misra/internal-linkage-specified-appropriately",
                "kind": "problem",
                "name": "RULE-6-5-2: Internal linkage should be specified appropriately",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/avoid-standard-integer-type-names",
              "name": "cpp/misra/avoid-standard-integer-type-names",
              "fullDescription": {
                "text": "Using standard signed and unsigned integer type names instead of specified width types makes storage requirements unclear and implementation-dependent."
              },
              "shortDescription": {
                "text": "RULE-6-9-2: The names of the standard integer types should not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-9-2","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using standard signed and unsigned integer type names instead of specified width\n              types makes storage requirements unclear and implementation-dependent.",
                "id": "cpp/misra/avoid-standard-integer-type-names",
                "kind": "problem",
                "name": "RULE-6-9-2: The names of the standard integer types should not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/advanced-memory-management-used",
              "name": "cpp/misra/advanced-memory-management-used",
              "fullDescription": {
                "text": "Advanced memory management may introduce subtle bugs related to lifetime and alignment, which may cause undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-21-6-3: Advanced memory management shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-21-6-3","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Advanced memory management may introduce subtle bugs related to lifetime and\n              alignment, which may cause undefined behavior.",
                "id": "cpp/misra/advanced-memory-management-used",
                "kind": "problem",
                "name": "RULE-21-6-3: Advanced memory management shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/int-to-pointer-cast-prohibited",
              "name": "cpp/misra/int-to-pointer-cast-prohibited",
              "fullDescription": {
                "text": "Casting from an integral type, enumerated type, or pointer to void type to a pointer type leads to unspecified behavior and is error prone."
              },
              "shortDescription": {
                "text": "RULE-8-2-6: An object with integral, enumerated, or pointer to void type shall not be cast to a pointer type"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-2-6","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Casting from an integral type, enumerated type, or pointer to void type to a pointer\n              type leads to unspecified behavior and is error prone.",
                "id": "cpp/misra/int-to-pointer-cast-prohibited",
                "kind": "problem",
                "name": "RULE-8-2-6: An object with integral, enumerated, or pointer to void type shall not be cast to a pointer type",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/object-accessed-after-lifetime-misra",
              "name": "cpp/misra/object-accessed-after-lifetime-misra",
              "fullDescription": {
                "text": "Accessing an object after its lifetime results in undefined behavior."
              },
              "shortDescription": {
                "text": "RULE-6-8-1: Access of object after lifetime (use-after-free)"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-8-1","correctness","security","external/misra/enforcement/undecidable","external/misra/obligation/required"],
                "description": "Accessing an object after its lifetime results in undefined behavior.",
                "id": "cpp/misra/object-accessed-after-lifetime-misra",
                "kind": "problem",
                "name": "RULE-6-8-1: Access of object after lifetime (use-after-free)",
                "precision": "high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/use-smart-ptr-factory-functions",
              "name": "cpp/misra/use-smart-ptr-factory-functions",
              "fullDescription": {
                "text": "Using raw pointer constructors of std::shared_ptr and std::unique_ptr instead of make_shared/make_unique can lead to memory leaks if exceptions occur during construction."
              },
              "shortDescription": {
                "text": "RULE-23-11-1: The raw pointer constructors of std::shared_ptr and std::unique_ptr should not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-23-11-1","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using raw pointer constructors of std::shared_ptr and std::unique_ptr instead of\n              make_shared/make_unique can lead to memory leaks if exceptions occur during\n              construction.",
                "id": "cpp/misra/use-smart-ptr-factory-functions",
                "kind": "problem",
                "name": "RULE-23-11-1: The raw pointer constructors of std::shared_ptr and std::unique_ptr should not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/pointer-arithmetic-forms-an-invalid-pointer",
              "name": "cpp/misra/pointer-arithmetic-forms-an-invalid-pointer",
              "fullDescription": {
                "text": "Pointers obtained as result of performing arithmetic should point to an initialized object, or an element right next to the last element of an array."
              },
              "shortDescription": {
                "text": "RULE-8-7-1: Pointer arithmetic shall not form an invalid pointer"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-7-1","scope/system","correctness","security","external/misra/enforcement/undecidable","external/misra/obligation/required"],
                "description": "Pointers obtained as result of performing arithmetic should point to an initialized\n              object, or an element right next to the last element of an array.",
                "id": "cpp/misra/pointer-arithmetic-forms-an-invalid-pointer",
                "kind": "path-problem",
                "name": "RULE-8-7-1: Pointer arithmetic shall not form an invalid pointer",
                "precision": "medium",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/no-implicit-bool-conversion",
              "name": "cpp/misra/no-implicit-bool-conversion",
              "fullDescription": {
                "text": "Implicit and contextual conversions to bool from fundamental types, unscoped enums, or pointers may lead to unintended behavior, except for specific cases like pointer checks and explicit operator bool conversions."
              },
              "shortDescription": {
                "text": "RULE-7-0-2: There shall be no conversion to type bool"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-2","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Implicit and contextual conversions to bool from fundamental types, unscoped enums,\n              or pointers may lead to unintended behavior, except for specific cases like pointer\n              checks and explicit operator bool conversions.",
                "id": "cpp/misra/no-implicit-bool-conversion",
                "kind": "problem",
                "name": "RULE-7-0-2: There shall be no conversion to type bool",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/member-functions-refqualified",
              "name": "cpp/misra/member-functions-refqualified",
              "fullDescription": {
                "text": "Member functions that return references to temporary objects (or subobjects) can lead to dangling pointers."
              },
              "shortDescription": {
                "text": "RULE-6-8-4: Member functions returning references to their object should be refqualified appropriately"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-8-4","correctness","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Member functions that return references to temporary objects (or subobjects) can\n              lead to dangling pointers.",
                "id": "cpp/misra/member-functions-refqualified",
                "kind": "problem",
                "name": "RULE-6-8-4: Member functions returning references to their object should be refqualified appropriately",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
              "name": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
              "fullDescription": {
                "text": "Using objects or functions with external linkage in implementation files makes code harder to understand."
              },
              "shortDescription": {
                "text": "RULE-6-5-1: Objects or functions with external linkage shall be declared in a header file"
              },
              "properties": {
                "tags": ["external/misra/id/rule-6-5-1","correctness","maintainability","readability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Using objects or functions with external linkage in implementation files makes code\n              harder to understand.",
                "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
                "kind": "problem",
                "name": "RULE-6-5-1: Objects or functions with external linkage shall be declared in a header file",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/unreachable-statement",
              "name": "cpp/misra/unreachable-statement",
              "fullDescription": {
                "text": "Dead code can indicate a logic error, potentially introduced during code edits, or it may be unnecessary code that can be deleted."
              },
              "shortDescription": {
                "text": "RULE-0-0-1: A function shall not contain unreachable statements"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-0-0-1","maintainability","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Dead code can indicate a logic error, potentially introduced during code edits, or\n              it may be unnecessary code that can be deleted.",
                "id": "cpp/misra/unreachable-statement",
                "kind": "problem",
                "name": "RULE-0-0-1: A function shall not contain unreachable statements",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
              "name": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
              "fullDescription": {
                "text": "Unsigned integer literals shall be appropriately suffixed."
              },
              "shortDescription": {
                "text": "RULE-5-13-4: Unsigned integer literals shall be appropriately suffixed"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-5-13-4","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Unsigned integer literals shall be appropriately suffixed.",
                "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
                "kind": "problem",
                "name": "RULE-5-13-4: Unsigned integer literals shall be appropriately suffixed",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/numeric-assignment-type-mismatch",
              "name": "cpp/misra/numeric-assignment-type-mismatch",
              "fullDescription": {
                "text": "Assignment between numeric types with different sizes, signedness, or type categories can lead to unexpected information loss, undefined behavior, or silent overload resolution changes."
              },
              "shortDescription": {
                "text": "RULE-7-0-6: Assignment between numeric types shall be appropriate"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-6","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Assignment between numeric types with different sizes, signedness, or type\n              categories can lead to unexpected information loss, undefined behavior, or silent\n              overload resolution changes.",
                "id": "cpp/misra/numeric-assignment-type-mismatch",
                "kind": "problem",
                "name": "RULE-7-0-6: Assignment between numeric types shall be appropriate",
                "precision": "high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/pointer-or-ref-param-not-const",
              "name": "cpp/misra/pointer-or-ref-param-not-const",
              "fullDescription": {
                "text": "Pointer or lvalue reference parameters that do not modify the target object should be const-qualified to accurately reflect function behavior and prevent unintended modifications."
              },
              "shortDescription": {
                "text": "RULE-10-1-1: The target type of a pointer or lvalue reference parameter should be const-qualified appropriately"
              },
              "properties": {
                "tags": ["external/misra/id/rule-10-1-1","correctness","readability","performance","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Pointer or lvalue reference parameters that do not modify the target object should\n              be const-qualified to accurately reflect function behavior and prevent unintended\n              modifications.",
                "id": "cpp/misra/pointer-or-ref-param-not-const",
                "kind": "problem",
                "name": "RULE-10-1-1: The target type of a pointer or lvalue reference parameter should be const-qualified appropriately",
                "precision": "high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/invalid-signature-for-special-member-function",
              "name": "cpp/misra/invalid-signature-for-special-member-function",
              "fullDescription": {
                "text": "Proper implementations of copy and move constructors and assignment operators ensure that resources are managed correctly."
              },
              "shortDescription": {
                "text": "RULE-15-0-2: User-provided copy and move member functions of a class should have appropriate signatures"
              },
              "properties": {
                "tags": ["external/misra/id/rule-15-0-2","scope/single-translation-unit","correctness","maintainability","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "Proper implementations of copy and move constructors and assignment operators ensure\n              that resources are managed correctly.",
                "id": "cpp/misra/invalid-signature-for-special-member-function",
                "kind": "problem",
                "name": "RULE-15-0-2: User-provided copy and move member functions of a class should have appropriate signatures",
                "precision": "very-high",
                "problem.severity": "warning"
              }
            },
            {
              "id": "cpp/misra/no-character-numerical-value",
              "name": "cpp/misra/no-character-numerical-value",
              "fullDescription": {
                "text": "Using the numerical value of a character type may lead to inconsistent behavior due to encoding dependencies and should be avoided in favor of safer C++ Standard Library functions."
              },
              "shortDescription": {
                "text": "RULE-7-0-3: The numerical value of a character shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-7-0-3","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Using the numerical value of a character type may lead to inconsistent behavior due\n              to encoding dependencies and should be avoided in favor of safer C++ Standard\n              Library functions.",
                "id": "cpp/misra/no-character-numerical-value",
                "kind": "problem",
                "name": "RULE-7-0-3: The numerical value of a character shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/comma-operator-should-not-be-used",
              "name": "cpp/misra/comma-operator-should-not-be-used",
              "fullDescription": {
                "text": "The comma operator should not be used."
              },
              "shortDescription": {
                "text": "RULE-8-19-1: The comma operator should not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-19-1","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "The comma operator should not be used.",
                "id": "cpp/misra/comma-operator-should-not-be-used",
                "kind": "problem",
                "name": "RULE-8-19-1: The comma operator should not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
              "name": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
              "fullDescription": {
                "text": "Treating unscoped enumeration without a fixed underlying type as an integral type is not portable and might cause unintended behaviors."
              },
              "shortDescription": {
                "text": "RULE-10-2-3: The numeric value of an unscoped enumeration with no fixed underlying type shall not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-10-2-3","scope/single-translation-unit","correctness","readability","external/misra/enforcement/decidable","external/misra/obligation/required"],
                "description": "Treating unscoped enumeration without a fixed underlying type as an integral type is\n              not portable and might cause unintended behaviors.",
                "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
                "kind": "problem",
                "name": "RULE-10-2-3: The numeric value of an unscoped enumeration with no fixed underlying type shall not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            },
            {
              "id": "cpp/misra/result-of-an-assignment-operator-should-not-be-used",
              "name": "cpp/misra/result-of-an-assignment-operator-should-not-be-used",
              "fullDescription": {
                "text": "The result of an assignment operator should not be used."
              },
              "shortDescription": {
                "text": "RULE-8-18-2: The result of an assignment operator should not be used"
              },
              "defaultConfiguration": {
                "level": "error"
              },
              "properties": {
                "tags": ["external/misra/id/rule-8-18-2","scope/single-translation-unit","external/misra/enforcement/decidable","external/misra/obligation/advisory"],
                "description": "The result of an assignment operator should not be used.",
                "id": "cpp/misra/result-of-an-assignment-operator-should-not-be-used",
                "kind": "problem",
                "name": "RULE-8-18-2: The result of an assignment operator should not be used",
                "precision": "very-high",
                "problem.severity": "error"
              }
            }
          ]
        },
        "extensions": [
          {
            "name": "codeql/misra-cpp-coding-standards",
            "semanticVersion": "2.62.0+5b1ef5c420b536e848a2d0387b7010a5bc1e637f",
            "locations": [
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/",
                "description": {
                  "text": "The QL pack root directory."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackRoot"]
                }
              },
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/qlpack.yml",
                "description": {
                  "text": "The QL pack definition file."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackDefinitionFile"]
                }
              }
            ]
          },
          {
            "name": "codeql/common-cpp-coding-standards",
            "semanticVersion": "2.62.0+5b1ef5c420b536e848a2d0387b7010a5bc1e637f",
            "locations": [
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/.codeql/libraries/codeql/common-cpp-coding-standards/2.62.0/",
                "description": {
                  "text": "The QL pack root directory."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackRoot"]
                }
              },
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/.codeql/libraries/codeql/common-cpp-coding-standards/2.62.0/qlpack.yml",
                "description": {
                  "text": "The QL pack definition file."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackDefinitionFile"]
                }
              }
            ]
          },
          {
            "name": "codeql/cpp-all",
            "semanticVersion": "5.0.0+d72c766a4938b9a3e6d7c26728f9a611b539422c",
            "locations": [
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/.codeql/libraries/codeql/cpp-all/5.0.0/",
                "description": {
                  "text": "The QL pack root directory."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackRoot"]
                }
              },
              {
                "uri": "file:///home/runner/.bazel/external/+_repo_rules5+codeql_coding_standards_compiled/pack/.codeql/libraries/codeql/cpp-all/5.0.0/qlpack.yml",
                "description": {
                  "text": "The QL pack definition file."
                },
                "properties": {
                  "tags": ["CodeQL/LocalPackDefinitionFile"]
                }
              }
            ]
          }
        ]
      },
      "invocations": [
        {
          "toolExecutionNotifications": [
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/multi_inheritance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/heap_check/heap_check.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_and_lock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/test_type_utilities.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/control_slot_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/rust/com-api/com-api-ffi-lola/registry_bridge_macro.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/hypervisor_socket_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_parameters.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_event_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/receive_handler_usage_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/scoped_event_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/copying_offset_ptr_bounds_check_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/service_discovery_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/consumer_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/get_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_shm_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bool_ops_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/file_system_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_or_open_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/check_point_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer_restart_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_worker_thread_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_client_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/test_resources/getter_and_setter_checkers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/destructor_notifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/general_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/exclusive_flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/big_datatype_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_shm_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/utils/typed_memory_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types_accessibility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/common_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes_v2.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_field_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_and_lock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_explicit.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/calculator_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/basic_class.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/delete_non_virtual_dtor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/fail_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/inotify/inotify_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_binding_tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/binding_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/multi_inheritance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/mocks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/binding_factory_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/overloaded_virtual.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/common_headers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/compare_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/bidirectional_discovery/application_b.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/copyable_atomic.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/big_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test_smoke.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/rust/test_support/test_helper_size_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/tire_pressure_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/dummy_instance_identifier_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_connection_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/type_erased_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/offset_ptr_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_binding_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/all_private.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_stop_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/i_tracing_filter_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_engine_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_event_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_memory_pool.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_fixtures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/single_instantiation_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_bidirectional_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/assignment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/receive_handler_unsubscribe_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/proxy_recreation_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somevector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/client_connection_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/types_in_signatures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/bigdata_com_api_gen.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_element_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/common_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/check_values_created_from_config_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/shared_flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/check_point_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/service_discovery_during_provider_crash_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_partial_restart_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/tire_pressure_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/notifier_only_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_error_domain.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test_types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somearray.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/event_receive_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_event_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/long_running_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer_restart_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/example/com-api-example/com-api-gen/vehicle_gen.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/destructor_notifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/test_type_utilities.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_misc_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/service_discovery_during_provider_crash_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/rust/score_com_cpp_bridge/register_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_resource_path_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_multiplication_overflow_build_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/types_in_signatures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/exclusive_flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_getter_setter_signatures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_typed_memory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/shared_memory_storage_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_error_domain.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/child_process_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/mock_pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/calculator_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/concurrent_skeleton_creation_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/multiple_proxies_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/receive_handler_unsubscribe_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/getter_only_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_server_to_client_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/client_quality_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/heap_check/heap_check.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_creator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/no_warnings/clean.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/separate_reception_threads_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery_client.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/assert_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/cpp_attributes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/conversion.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/transport_message.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/app1_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_store.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/internal_namespace.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/unsubscribe_deadlock_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/unsubscribe_deadlock_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/forward_declared.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/message_passing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/runtime_mock_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/child_process_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/i_sealed_shm.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_regression.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/resource_manager_fixture_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/control_slot_types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_receiver.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/enum_and_free_functions.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_mytype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/test/callable_traits_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/inheritance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_support.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/com_error_domain.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_stress_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/concurrent_skeleton_creation_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/arithmetic_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/common/tire_pressure_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/sign_compare.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_partial_restart_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/common/tire_pressure_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/binding_factory_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/notifier_only_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/shared_resource_engine_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/generic_generic_interaction_app.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain_server_to_client_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider_restart_max_subscribers_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_decorator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/forward_declared.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/multiple_proxies_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/reserving_skeleton_slots_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_properties.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future_samples_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sync_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_get_new_samples_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/generated_api_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/receive_handler_usage_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/event_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/test/callable_traits_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/constexpr_members.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/protected_methods.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_client_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/cast_qual.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/getter_only_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/transport_message.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state_change_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_entry.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_explicit.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_services.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/get_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/reserving_skeleton_slots_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_binding_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/all_private.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_allocate_send_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/rust/test_support/test_helper_size_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/client_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_creator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/com_error_domain.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/inheritance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/template_alias.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/enum_and_free_functions.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/assert_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider_restart_max_subscribers_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/data_slots_read_only_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_element_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/mock_message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_decorator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/runtime_mock_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_single_exec_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/proxy_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/tire_pressure_extended_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/process_synchronizer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/globals.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/containers_compatibility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/flock/flock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/index_dereference_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/register_pid_fake.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/lib_memory_ivshmem_xvm.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/type_erased_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/smokeyeyes/smokeyeyes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_service_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_mocked_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_state_change_notifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sync_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/transaction_log_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/skeleton_recreation_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state_change_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_client_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_generic_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/copyable_atomic.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/protected_methods.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_shared_resource_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_store.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_handle_notification_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/arithmetic_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/provider_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/messaging.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_sequence_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/shared_memory_storage_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_valueevttype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/binding_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sample_sender_receiver.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_state_change_notifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_future.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_allocate_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/receive_handler_registration_changed_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_regression.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/dispatch_thread_runner_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_receiver.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sample_sender_receiver.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_index.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/constexpr_members.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/stop_token_sig_term_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/proxy_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/bidirectional_discovery/application_a.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/type_erased_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/controller.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_mocked_service_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util_calculate_aligned_size_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/test_resources/getter_and_setter_checkers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/ref_qualifiers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_entry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somestruct.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/utils/typed_memory_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/member_function_templates.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sctf_test_runner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_observer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/stop_token_sig_term_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/separate_reception_threads_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_server_communication.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/quality_aware_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_application_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/rust/score_com_cpp_bridge/register_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/controller.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/semi_dynamic_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_anonymous_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/example/com-api-example/com-api-gen/vehicle_gen.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/shadow.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/scoped_event_receive_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_event_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_benchmarking_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/process_synchronizer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/service_discovery_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_generic_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/globals.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/cpp_attributes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/test_constants.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/receive_handler_registration_changed_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_fixtures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_index.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_heap_allocator_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_myenum.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/subscribe_handler_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/undef.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "module_integration_test/main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/check_values_created_from_config_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_client_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_heap_allocator_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/timeout_supervisor.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/app2_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/i_tracing_filter_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/test/typed_memory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/big_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/test_constants.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_trace_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/template_alias.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_offer_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/consumer_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_collectionoftypes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/transaction_log_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_multidimarray.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue_entry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_handle_notification_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/generic_trace_api_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/provider_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/generic_typed_interaction_app.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_observer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_multidimvector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/client_quality_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/server_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/sfinae.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/consumer_and_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/smokeyeyes/smokeyeyes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/generic_trace_api_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/skeleton_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/semi_dynamic_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_parameters.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/member_function_templates.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_mocked_service_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/generic_proxy_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes_v2.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_client_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/misc_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/copyable_atomic_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_connection_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/ref_qualifiers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/user_permission.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method_handling_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/quality_aware_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_events_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider_restart_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/main_stop_offer_during_call.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_meta_info.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_support.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/tire_pressure_extended_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_start_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/test/typed_memory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_getter_setter_signatures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_addition_overflow_build_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/construction_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_transport_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/subscribe_handler_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/main2.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/offset_ptr_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_memory_pool.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/register_pid_fake.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/shared_flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/skeleton_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_c.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sctf_test_runner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/asil_specific_cfg.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/service_discovery_during_consumer_crash_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/timeout_supervisor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_get_num_new_samples_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future_unit_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/arithmetic_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_properties.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr_bounds_check.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/long_running_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_binding_tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/service_discovery_during_consumer_crash_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_benchmarking_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_open_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/big_datatype_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/basic_class.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/data_slots_read_only_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/dynamic_array_bounds_checking_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider_restart_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_future.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/type_alias.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_c.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method_handling_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/file_system_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_typed_memory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/generic_proxy_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/disabled_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/sfinae.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/asil_specific_cfg.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/rust/com-api/com-api-ffi-lola/registry_bridge_macro.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/single_instantiation_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_public_api_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/bigdata_com_api_gen.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_bidirectional_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_meta_info.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/general_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/fail_test.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_service_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/user_permission.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/type_alias.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/incomplete_handlers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_stop_offer_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/internal_namespace.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/dummy_instance_identifier_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/proxy_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/hypervisor_socket_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/service_protocol_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_generator/config_generator.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/integration_test/test_multiple_proxies.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/test_provider_restart_max_subscribers_with_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/lib_memory_ivshmem_xvm_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/perf_run.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/integration_test/test_unsubscribe_deadlock.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/generate_report.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/disabled_method_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/integration_test/test_service_discovery_search_and_offer.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_api_extraction_validation.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/conf.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/justify.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/integration_test/test_check_values_created_from_config.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/asilb_consumer_asilb_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/assemble_publish_tree.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/integration_test/test_generic_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/integration_test/test_concurrent_skeleton_creation.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/test_consumer_restart_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/test_hello_world.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/visibility_guard_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/integration_test/test_check_number_of_allocations.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/parser.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/extract_api_items.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/inotify/integration_test/test_inotify.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/integration_test/test_separate_reception_threads.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/integration_test/test_service_discovery_during_provider_crash.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_generate_report.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/generate_matrix.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/qm_consumer_asilb_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_extract_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_kill_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/integration_test/test_bidirectional_transport_reconnect.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_get_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/integration_test/test_service_discovery_offer_and_search.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/provider_restart_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/skeleton_recreation_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/config.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/consumer_restart_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/sphinx_build_wrapper.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/integration_test/stop_offer_during_call_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/integration_test/test_receive_handler_usage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/consumer_sync_apis/integration_test/com_api_sync_api_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/llvm_cov/reporter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/integration_test/semi_dynamic_methods_different_processes_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/test_proxy_restart_shall_not_affect_other_proxies_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/integration_test/test_bigdata.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_config_schema.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dashboard/generate_dashboard.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/integration_test/test_generic_generic_interaction.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_get_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/static_analysis/codeql_lint.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/effective_coverage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/integration_test/test_bidirectional_transport_communication.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/integration_test/non_trivial_constructors_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/integration_test/test_subscribe_handler.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/module_rewriter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/proxy_recreation_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/qm_consumer_qm_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_not_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/integration_test/semi_dynamic_methods_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "bazel/toolchains/template/conf.template.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/extract_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/integration_test/test_shared_memory_storage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/integration_test/test_generic_typed_interaction.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/llvm_cov/merger.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/incomplete_handlers_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/provider_restart_max_subscribers_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/integration_test/test_find_any_semantics.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/lcov_to_html.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_get_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_diff_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/test_provider_restart_max_subscribers_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/diff_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/integration_test/basic_acceptance_different_processes_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/ivshmem_qemu.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/proxy_restart_shall_not_affect_other_proxies_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_generator/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/flaky_reports_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/generate_golden.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/integration_test/test_data_slots_read_only.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "third_party/qnx_credential_helper.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_graceful_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_module_rewriter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/collect_flaky_tests.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/sync_flaky_issues.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_get_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/merge_flaky_reports.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/consumer_async_apis/integration_test/com_api_async_api_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/integration_test/test_service_discovery_during_consumer_crash.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/integration_test/test_field_initial_value.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/asilb_consumer_qm_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/integration_test/test_receive_handler_unsubscribe.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dashboard/generate_dashboard_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/integration_test/basic_acceptance_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_not_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_generate_matrix.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_not_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/test_consumer_restart_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/dual_qemu_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/integration_test/test_reserving_skeleton_slots.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/config_schema.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/test_proxy_restart_shall_not_affect_other_proxies_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_not_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/build.mjs",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_qnx_environment/main.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/src/main.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/_static/js/version_flyout.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_qnx_environment/post.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/src/post.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "message": {
                "text": "Internal telemetry for the C++ extractor.\n\nNo action needed.",
                "markdown": "Internal telemetry for the C++ extractor.\n\nNo action needed."
              },
              "level": "note",
              "timeUtc": "2026-08-16T00:24:10.786Z",
              "descriptor": {
                "id": "cpp/extractor/summary",
                "index": 3
              },
              "properties": {
                "attributes": {"cache-hits":0,"cache-misses":494,"compilers":[{"program":"clang","version":"clang version 22.1.7 (https://github.com/llvm/llvm-project a255c1ed36a1d06f79bd2633ba9f8d900153007c)"}],"extractor-failures":317,"extractor-successes":177,"trap-caching":"disabled"},
                "visibility": {"statusPage":false,"telemetry":true}
              }
            }
          ],
          "executionSuccessful": true
        },
        {
          "toolExecutionNotifications": [
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/multi_inheritance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/heap_check/heap_check.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_and_lock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/test_type_utilities.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/control_slot_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/rust/com-api/com-api-ffi-lola/registry_bridge_macro.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/hypervisor_socket_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_parameters.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_event_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/receive_handler_usage_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/scoped_event_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/copying_offset_ptr_bounds_check_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/service_discovery_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/consumer_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/get_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_shm_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bool_ops_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/file_system_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_or_open_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/check_point_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer_restart_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_worker_thread_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_client_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/test_resources/getter_and_setter_checkers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/destructor_notifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/general_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/exclusive_flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/big_datatype_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_shm_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/utils/typed_memory_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types_accessibility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/common_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes_v2.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_field_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_and_lock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_explicit.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/calculator_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/basic_class.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/delete_non_virtual_dtor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/fail_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/inotify/inotify_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_binding_tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/binding_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/multi_inheritance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/mocks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/binding_factory_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/overloaded_virtual.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/common_headers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/compare_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/bidirectional_discovery/application_b.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/copyable_atomic.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/big_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test_smoke.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/rust/test_support/test_helper_size_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/tire_pressure_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/dummy_instance_identifier_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_connection_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/type_erased_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/offset_ptr_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_binding_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/all_private.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_stop_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/i_tracing_filter_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_engine_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_event_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_memory_pool.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_fixtures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/single_instantiation_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_bidirectional_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/assignment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/receive_handler_unsubscribe_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_store.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/proxy_recreation_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somevector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/client_connection_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/types_in_signatures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/bigdata_com_api_gen.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_element_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/common_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/check_values_created_from_config_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/shared_flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/check_point_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/service_discovery_during_provider_crash_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_partial_restart_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/tire_pressure_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/notifier_only_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_error_domain.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test_types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somearray.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/event_receive_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_event_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/long_running_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/consumer_restart_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/example/com-api-example/com-api-gen/vehicle_gen.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/destructor_notifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/test_type_utilities.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_misc_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/service_discovery_during_provider_crash_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/rust/score_com_cpp_bridge/register_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_resource_path_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_multiplication_overflow_build_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/types_in_signatures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/exclusive_flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_getter_setter_signatures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_typed_memory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/shared_memory_storage_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_error_domain.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/child_process_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/mock_pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/calculator_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/concurrent_skeleton_creation_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/multiple_proxies_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/receive_handler_unsubscribe_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/data_type_meta_info.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/getter_only_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_server_to_client_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/client_quality_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/heap_check/heap_check.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_creator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/quality_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/no_warnings/clean.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/separate_reception_threads_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery_client.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/assert_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/cpp_attributes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/test_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/conversion.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_event_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/transport_message.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/app1_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_store.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/internal_namespace.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/unsubscribe_deadlock_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/unsubscribe_deadlock_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/forward_declared.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/message_passing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/runtime_mock_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/child_process_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/i_sealed_shm.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_regression.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/resource_manager_fixture_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/control_slot_types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_receiver.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/enum_and_free_functions.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_mytype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/test/callable_traits_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/inheritance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/message_framer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_support.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/com_error_domain.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_stress_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/concurrent_skeleton_creation_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/arithmetic_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/common/tire_pressure_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/sign_compare.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/i_partial_restart_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/common/tire_pressure_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_8/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/binding_factory_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/notifier_only_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/shared_resource_engine_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/generic_generic_interaction_app.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain_server_to_client_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider_restart_max_subscribers_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_decorator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/forward_declared.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/multiple_proxies_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/reserving_skeleton_slots_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_properties.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future_samples_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sync_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_get_new_samples_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/generated_api_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/receive_handler_usage_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/event_receive_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/test/callable_traits_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/constexpr_members.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/protected_methods.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_client_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/node_identifier_copier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/cast_qual.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/getter_only_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/transport_message.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state_change_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_entry.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_explicit.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_services.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/get_and_notifier_enabled_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/reserving_skeleton_slots_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_binding_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/com_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_connection_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/all_private.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_allocate_send_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_consumer_and_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_signature_element_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/rust/test_support/test_helper_size_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/client_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_creator.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_runtime_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/com_error_domain.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event_common_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/proxy_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_field_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/inheritance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/template_alias.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/enum_and_free_functions.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/skeleton.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/message_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/assert_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_method_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/provider_restart_max_subscribers_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/data_slots_read_only_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_element_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/mock_message_framer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_pending_request_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_decorator.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/runtime_mock_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_hypervisor_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_single_exec_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/proxy_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_decrementer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/tire_pressure_extended_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/process_synchronizer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/globals.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/containers_compatibility_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/flock/flock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/index_dereference_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/register_pid_fake.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/lib_memory_ivshmem_xvm.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/type_erased_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/smokeyeyes/smokeyeyes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/tracing/tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_service_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_mocked_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_state_change_notifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sync_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/transaction_log_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/skeleton_recreation_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state_change_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_interface.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_client_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_generic_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/copyable_atomic.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_shared_resource_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/protected_methods.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/type_erased_sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_store.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_handle_notification_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_subscription_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/arithmetic_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/provider_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/messaging.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_config.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/mocking/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_sequence_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_helpers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/shared_memory_storage_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_valueevttype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/binding_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sample_sender_receiver.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_state_change_notifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_future.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/vector.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_allocate_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/receive_handler_registration_changed_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_regression.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/dispatch_thread_runner_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_event_receiver.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sample_sender_receiver.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_index.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/constexpr_members.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/stop_token_sig_term_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/proxy_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/bidirectional_discovery/application_a.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/type_erased_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/controller.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_mocked_service_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util_calculate_aligned_size_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/test_resources/getter_and_setter_checkers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/ref_qualifiers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_entry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_somestruct.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/utils/typed_memory_utils.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/member_function_templates.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sctf_test_runner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_client_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy_method.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_observer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/global_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/method_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/stop_token_sig_term_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/unique_socket.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/separate_reception_threads_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/client_server_communication.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/quality_aware_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_application_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/rust/score_com_cpp_bridge/register_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/controller.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_specifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/semi_dynamic_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/subscription_state.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_anonymous_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/example/com-api-example/com-api-gen/vehicle_gen.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/shm_size_calc_mode_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/command_line_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/shadow.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/scoped_event_receive_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_event_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server_connection.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_benchmarking_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_event_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/process_synchronizer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/skeleton_event_trace_point_type.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/method_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/service_discovery_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/sample_transport_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_generic_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/consumer/proxy_component.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/globals.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_4/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/cpp_attributes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/provided_service_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/gateway_messages.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_application_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_component_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_get_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/test_constants.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/receive_handler_registration_changed_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_fixtures.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/new_delete_delegate_resource_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_proxy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_index.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/i_service_discovery.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/flock_mutex_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_heap_allocator_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_myenum.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/subscribe_handler_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/compiler_warnings/test/has_warnings/undef.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "module_integration_test/main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/check_values_created_from_config_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_client_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_heap_allocator_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/timeout_supervisor.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/app2_main.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/i_tracing_filter_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/test/typed_memory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/pointer_arithmetic_util_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service_instance_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/big_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/proxy_wrapper_class_test_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/test_constants.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handle.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_trace_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_binding.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/template_alias.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_core.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_offer_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/consumer_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_collectionoftypes.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/i_shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_12/provider/skeleton_component.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/transaction_log_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_multidimarray.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue_entry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_handle_notification_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/enriched_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/generic_trace_api_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_field.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/start_find_service/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/provider_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/generic_typed_interaction_app.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/config_validate_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_observer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_skeleton_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/impl_type_multidimvector.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/client_quality_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/mock/server_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_methods_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/server_types.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/sfinae.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/handle_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/consumer_and_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/smokeyeyes/smokeyeyes.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/generic_trace_api_test_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/service_discovery_client_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/skeleton_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/semi_dynamic_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/test_parameters.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/member_function_templates.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/test/skeleton_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_parser.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_mocked_service_data.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/generic_proxy_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/private_changes_v2.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_client_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_map_view_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/misc_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/copyable_atomic_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_connection_handler.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/error_serializer_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/main_provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/ref_qualifiers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/find_service_handler.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test/skeleton_event_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/user_permission.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_tracing_runtime.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_interface.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_method_handling_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/quality_aware_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_events_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider_restart_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/main_stop_offer_during_call.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_meta_info.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/result_type_support.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_9/tire_pressure_extended_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/managed_memory_resource_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_start_find_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_field_update/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/test/typed_memory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_event_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_getter_setter_signatures.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/proxy.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/test/arithmetic_utils_addition_overflow_build_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_7/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/traits_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/gateway_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_region_bounds.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/construction_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_base_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/reference_to_moveable.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/sample_transport_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/shared_memory_object_guard.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/subscribe_handler_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/main2.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_method_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/offset_ptr_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/unix_domain/unix_domain_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_1/hello_world_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/test_method_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/messages/serialization_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/hello_world_service.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/test_offset_ptr/bounds_check_memory_pool.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_type_deployment_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_type_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/gateway_application/configuration/gateway_config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_base_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/api/api_under_test/our/name_space/someinterface/someinterface_common.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/linear_search_map_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/register_pid_fake.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/flock/shared_flock_mutex.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/skeleton_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/polymorphic_offset_ptr_allocator_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_c.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/sctf_test_runner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/asil_specific_cfg.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/binding_factory_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_container.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/service_discovery_during_consumer_crash_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/timeout_supervisor.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/memory_resource_registry.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_get_num_new_samples_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/non_allocating_future/non_allocating_future_unit_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/runtime_sized_array_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_field_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/util/arithmetic_utils.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_event_properties.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/proxy_container.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_field_mock_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/offset_ptr_bounds_check.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/long_running_service.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/i_binding_tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_allocatee_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/skeleton_method_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/fake/my_bounded_shared_memory_resource.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_field_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/service_discovery_during_consumer_crash_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/lola_benchmarking_client.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_open_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/big_datatype_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_2/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/test_method_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/basic_class.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/field_tags_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/data_slots_read_only_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/generic_skeleton_event.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/lock_file.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/dynamic_array_bounds_checking_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/test_datatype.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/pending_request_tracker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/provider_restart_application.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_future.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_base.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/common_event_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/all_signatures_datatype/all_signatures_method_provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/provided_service_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/type_alias.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/proxy_field_trace_point_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/extern_c.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/generic_proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/proxy_method_handling_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/test/file_system_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/bar_typed_memory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/generic_proxy_application.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/disabled_method_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/sfinae.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/log_on_timeout.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/asil_specific_cfg.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/shm_path_builder_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/rust/com-api/com-api-ffi-lola/registry_bridge_macro.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_element_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/proxy_event_tracing.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/backend/mw_com/single_instantiation_strategy.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/bidirectional_transport.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_parser.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/api_microbenchmarks/lola_public_api_benchmarks.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/skeleton_wrapper_class_test_view.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_event_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_5/provider/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/bigdata_com_api_gen.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/timed_command_queue_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/i_bidirectional_transport.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_meta_info.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/general_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory_impl.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/runtime_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/datatypes/set_and_notifier_enabled_field.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_storage_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_binding_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/main_consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_slot_status.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/i_skeleton_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/flag_owner.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/mocking/test_type_utilities_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_method_id.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/common_test_resources/fail_test.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/i_proxy_field_binding_factory.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/test_doubles/fake_service_data.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_binding.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_data_control.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/configuration_error_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/test_datatype.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/methods_test_resources/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_11/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/qnx_dispatch_server_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/tracing_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/trace_error.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/user_permission.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/proxy_event_binding_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_6/consumer/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_13/event_send_receive/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource_create_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/method_traits_checker_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/provider.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/type_alias.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/test/configuration_test_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/incomplete_handlers_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/json_parsing_convenience_wrappers.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/skeleton_event_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client_stop_offer_service_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_10/consumer/consumer.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/doc/tutorial/chapter_3/provider/provider.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/i_server_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_mock.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/runtime_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/consumer.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/methods/proxy_method_base.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/common_resources.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/mock_binding/sample_ptr.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/tracing/skeleton_tracing_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/internal_namespace.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/log/logging_callback.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/dummy_instance_identifier_builder.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/service_discovery_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/test/proxy_resources.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/string_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/configuration/hypervisor_socket_configuration.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/service/proxy_needs.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/message_passing/service_protocol_config.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_mock.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/configuration/service_version_type_test.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/memory/shared/shared_memory_resource.cpp",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "cpp/baseline/expected-extracted-files",
                "index": 0
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_generator/config_generator.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/multiple_proxies/integration_test/test_multiple_proxies.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/test_provider_restart_max_subscribers_with_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/example_xvm/lib_memory_ivshmem_xvm_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/perf_run.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/unsubscribe_deadlock/integration_test/test_unsubscribe_deadlock.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/generate_report.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/disabled_method_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_search_and_offer/integration_test/test_service_discovery_search_and_offer.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_api_extraction_validation.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/conf.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/justify.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/check_values_created_from_config/integration_test/test_check_values_created_from_config.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/asilb_consumer_asilb_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/assemble_publish_tree.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_proxy/integration_test/test_generic_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/concurrent_skeleton_creation/integration_test/test_concurrent_skeleton_creation.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/test_consumer_restart_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/test/test_hello_world.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/visibility_guard_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/checks_number_of_allocations/integration_test/test_check_number_of_allocations.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/parser.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/extract_api_items.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/inotify/integration_test/test_inotify.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/separate_reception_threads/integration_test/test_separate_reception_threads.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_provider_crash/integration_test/test_service_discovery_during_provider_crash.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_generate_report.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/generate_matrix.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/qm_consumer_asilb_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_extract_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_kill_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/integration_test/test_bidirectional_transport_reconnect.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_get_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_offer_and_search/integration_test/test_service_discovery_offer_and_search.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/provider_restart_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/skeleton_recreation_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/config.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/consumer_restart_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/utils/sphinx_build_wrapper.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/stop_offer_during_call/integration_test/stop_offer_during_call_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_usage/integration_test/test_receive_handler_usage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/consumer_sync_apis/integration_test/com_api_sync_api_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/llvm_cov/reporter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/integration_test/semi_dynamic_methods_different_processes_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/test_proxy_restart_shall_not_affect_other_proxies_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/bigdata/integration_test/test_bigdata.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_config_schema.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dashboard/generate_dashboard.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/integration_test/test_generic_generic_interaction.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_get_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/static_analysis/codeql_lint.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/effective_coverage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/gateway/transport_layer/sample/test/integration_test/test_bidirectional_transport_communication.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/non_trivial_constructors/integration_test/non_trivial_constructors_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/subscribe_handler/integration_test/test_subscribe_handler.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/module_rewriter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/proxy_recreation_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/qm_consumer_qm_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_not_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/semi_dynamic_methods/integration_test/semi_dynamic_methods_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "bazel/toolchains/template/conf.template.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/extract_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/shared_memory_storage/integration_test/test_shared_memory_storage.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/generic_skeleton/integration_test/test_generic_typed_interaction.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/llvm_cov/merger.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/edge_cases_test/integration_test/incomplete_handlers_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/provider_restart_max_subscribers_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/find_any_semantics/integration_test/test_find_any_semantics.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/coverage/lcov_to_html.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_get_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/tests/test_diff_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_notifier_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart_max_subscribers/integration_test/test_provider_restart_max_subscribers_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/api_surface/diff_api.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/integration_test/basic_acceptance_different_processes_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/ivshmem_qemu.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/proxy_restart_shall_not_affect_other_proxies_test_fixture.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/performance_benchmarks/macro_benchmark/config_generator/__init__.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/flaky_reports_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/visibility_guard/generate_golden.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/data_slots_read_only/integration_test/test_data_slots_read_only.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "third_party/qnx_credential_helper.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/provider_restart/integration_test/test_provider_restart_graceful_no_proxy.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_module_rewriter.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/collect_flaky_tests.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/sync_flaky_issues.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_set_and_get_same_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/scripts/merge_flaky_reports.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/basic_rust_api/consumer_async_apis/integration_test/com_api_async_api_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_and_notifier_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/service_discovery_during_consumer_crash/integration_test/test_service_discovery_during_consumer_crash.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/field_initial_value/integration_test/test_field_initial_value.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/mixed_criticality/integration_test/asilb_consumer_qm_provider_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/receive_handler_unsubscribe/integration_test/test_receive_handler_unsubscribe.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dashboard/generate_dashboard_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/methods/basic_acceptance_test/integration_test/basic_acceptance_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_construct_not_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/tests/test_generate_matrix.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_not_offered_skeleton_different_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/consumer_restart/integration_test/test_consumer_restart_graceful.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/integration_testing/environments/dual_qemu/dual_qemu_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/reserving_skeleton_slots/integration_test/test_reserving_skeleton_slots.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "quality/dependency_compatibility_checker/config_schema.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/fields/set_and_get_and_notifier/integration_test/test_get_different_process.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/partial_restart/proxy_restart_shall_not_affect_other_proxies/integration_test/test_proxy_restart_shall_not_affect_other_proxies_kill.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "score/mw/com/test/move_semantics/skeleton_event/integration_test/move_assign_not_offered_skeleton_same_process_test.py",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "py/baseline/expected-extracted-files",
                "index": 1
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/build.mjs",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_qnx_environment/main.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/src/main.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": "docs/sphinx/_static/js/version_flyout.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_qnx_environment/post.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "locations": [
                {
                  "physicalLocation": {
                    "artifactLocation": {
                      "uri": ".github/actions/00_infrastructure/setup_bazel_cache/src/post.js",
                      "uriBaseId": "%SRCROOT%"
                    }
                  }
                }
              ],
              "message": {
                "text": ""
              },
              "level": "none",
              "descriptor": {
                "id": "js/baseline/expected-extracted-files",
                "index": 2
              },
              "properties": {
                "formattedMessage": {"text":""}
              }
            },
            {
              "message": {
                "text": "Internal telemetry for the C++ extractor.\n\nNo action needed.",
                "markdown": "Internal telemetry for the C++ extractor.\n\nNo action needed."
              },
              "level": "note",
              "timeUtc": "2026-08-16T00:38:12.604Z",
              "descriptor": {
                "id": "cpp/extractor/summary",
                "index": 3
              },
              "properties": {
                "attributes": {"cache-hits":0,"cache-misses":509,"compilers":[{"program":"gcc-cc1"}],"extractor-failures":480,"extractor-successes":29,"trap-caching":"disabled"},
                "visibility": {"statusPage":false,"telemetry":true}
              }
            }
          ],
          "executionSuccessful": true
        }
      ],
      "results": [
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function getMemoryResourceProxy is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 40,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "912e477f31648e47:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function getEndAddress is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 25,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c5e7968b7214cdf9:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UnlinkFilesystemEntry is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 6,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28c8e75847db9678:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function Open is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 420,
                  "startColumn": 79,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151ea7f:1",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function CreateOrOpen is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 399,
                  "startColumn": 79,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151e8c5:3",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function CreateAnonymous is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 79,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151e8c5:2",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function Create is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 353,
                  "startColumn": 79,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151e8c5:1",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function getOwnerUid is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 670,
                  "startColumn": 6,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f5a5abb226aba59e:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function CopyFrom is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 505,
                  "startColumn": 6,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aa04e51023fe7722:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UnregisterOnServiceMethodUnsubscribedHandler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 389,
                  "startColumn": 18,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c947f60da1eda3d2:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UnregisterMethodCallHandler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 377,
                  "startColumn": 18,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8ca06b0fe1910fe4:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UnregisterOnServiceMethodSubscribedHandler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 362,
                  "startColumn": 18,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6a13d9a13cb0350d:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetPartnerQualityType is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1523,
                  "startColumn": 13,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1cd7d07df1959609:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SetSlotValue is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 6,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab79f5b68d0e0638:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SetSlotValue is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 63,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab79f5b68d0e0638:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function InjectSlotCollector is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 10,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ba4ae43ddee6c0c7:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SamplePtr is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 14,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b88ec9b711f75080:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function EmplaceEventMetaInfo is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 928,
                  "startColumn": 16,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9027e853e942aef:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function EmplaceEventDataStorage is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 331,
                  "startColumn": 31,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aceac490b929c27b:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SampleAllocateePtr is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 14,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4f6cb67cb8e2e2be:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SampleAllocateePtr is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 14,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aafef12c95453030:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ResetGuards is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 460,
                  "startColumn": 6,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ceea6f3d5422b11f:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SetAsilBNotificationsRegistered is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 454,
                  "startColumn": 6,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dab50966cbbfe36c:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SetQmNotificationsRegistered is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 448,
                  "startColumn": 6,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "349aa5368092147b:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UpdateCurrentTimestamp is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 440,
                  "startColumn": 6,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc728212b62470eb:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function EmplaceTypeErasedSamplePtrsGuard is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 434,
                  "startColumn": 6,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2d9c02e300ebeb27:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function RegisterHandlerImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 14,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b7592dab74601a7f:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function RegisterHandlerWithQuality is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 189,
                  "startColumn": 14,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "407763ca1c7eb286:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function FieldTagsStore is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/field_tags_store.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 5,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f7216dbb3f5f928c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetNumNewSamplesAvailableImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 183,
                  "startColumn": 28,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b334b886f6d6dfe:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetNewSamplesImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 28,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6738222e6626c1c5:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function InitialiseEventSlotsRawArray is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 28,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "baa50397b085e678:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function instance is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 6,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b626a5f8ccb8646d:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function instance is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 6,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16bba83609b9e7a1:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function instance is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 6,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "70669e3c1562708d:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetTypedEventBinding is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 233,
                  "startColumn": 6,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb32688ed654fd9c:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function instance is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 6,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7448708f19fd4c31:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetTypedEventBinding is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 264,
                  "startColumn": 6,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "576e53710b1d8f70:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function DoDeferredUpdate is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 26,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f30be7533f53841:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function RegisterGetHandler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 40,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "17fe8f91e66d01a8:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function CreateMethodReturnTypePtrToT is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 446,
                  "startColumn": 56,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bcefad9df5242cc5:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProxyFieldImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 425,
                  "startColumn": 5,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab730812d7665ac1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeGetMethodDispatchIfEnabled is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 405,
                  "startColumn": 72,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7d40bb436bd4c8b9:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeSetMethodDispatchIfEnabled is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 383,
                  "startColumn": 72,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1c9cae367050b61:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeEventDispatchIfEnabled is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 361,
                  "startColumn": 51,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a82651b5ec19828e:1",
            "primaryLocationStartColumnFingerprint": "46"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SkeletonFieldImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 341,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a75d915dfcc3be4f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeSetMethodIfEnabled is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 272,
                  "startColumn": 75,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b6ddcc4120da8b0:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeGetMethodIfEnabled is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 250,
                  "startColumn": 75,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1a98d808f93921e8:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function MakeSkeletonEvent is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 233,
                  "startColumn": 54,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9f8da81834f56ff3:1",
            "primaryLocationStartColumnFingerprint": "49"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetTypedEvent is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 448,
                  "startColumn": 6,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "134bbd1085f2abb8:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function UpdateImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 442,
                  "startColumn": 14,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "87d08c341fe0ef88:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ClearCreationResults is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 442,
                  "startColumn": 17,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe0f6cc3377b0cec:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function InjectCreationResults is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 436,
                  "startColumn": 17,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40bb00ebd74fefbe:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProxyWrapperClass is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 434,
                  "startColumn": 5,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3ba2b9e6730001f1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProxyWrapperClass is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 429,
                  "startColumn": 14,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "623f66586fb91d2f:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function Create is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 388,
                  "startColumn": 38,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d622af1ef5ede9fc:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ClearCreationResults is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 303,
                  "startColumn": 17,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "67722a93293983e0:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function InjectCreationResults is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 292,
                  "startColumn": 17,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3516237f2c5cf8b:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function SkeletonWrapperClass is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 14,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6db845205ed4309:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function InjectRuntimeMockImpl is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 17,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9e4030473b3a60db:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_bounds.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 5,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a59e6e3130bbab3c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_bounds.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 5,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a59e84c87c6e724f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 5,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebf36d674515f949:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 187,
                  "startColumn": 9,
                  "endLine": 189,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa2062ce1adc5b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 9,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f15022e0f16cb8d8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 13,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f11e29076d8664c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 9,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3a4f149bfef93325:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 5,
                  "endLine": 62,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a43c5c8db4c73e7e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 5,
                  "endLine": 41,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d58708a60212d921:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e31b23017e3251f3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 258,
                  "startColumn": 5,
                  "endLine": 261,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab981bd2cd1327b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 231,
                  "startColumn": 5,
                  "endLine": 234,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe744c0cfea04c5c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 192,
                  "startColumn": 5,
                  "endLine": 193,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f0af8a2046dbafb:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 5,
                  "endLine": 140,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "99cfa690bc2231b4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 5,
                  "endLine": 53,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea8d788baaa8a6fd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1016,
                  "startColumn": 5,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "679f52ec78dc6962:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 557,
                  "startColumn": 5,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a1e7c30701d5a3e5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 531,
                  "startColumn": 5,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5f737da0f729f76:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 620,
                  "startColumn": 5,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f79c8761df988f0a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 992,
                  "startColumn": 5,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "679f52ec78dc5af8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 903,
                  "startColumn": 9,
                  "endLine": 904,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0e0cdb76e8c58ac:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 489,
                  "startColumn": 5,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff1d2399104af52:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 821,
                  "startColumn": 5,
                  "endLine": 823,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d00ff11a7eee0260:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 813,
                  "startColumn": 5,
                  "endLine": 815,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3ee95feac7f4ee33:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 688,
                  "startColumn": 5,
                  "endLine": 689,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3659b89c8d8db8e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 13,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a1e2d11d0f654eac:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/com_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 17,
                  "endLine": 217,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a5dd180ee039c67:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6dd190acddd5a078:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 250,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db8be36116dd8ab:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 237,
                  "startColumn": 5,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8301c1cdf66b839c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 170,
                  "startColumn": 5,
                  "endLine": 172,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8b29df3593d10dc2:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 9,
                  "endLine": 112,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dd54245e9db9b56:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 17,
                  "endLine": 90,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7588b991ba9f0812:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 248,
                  "startColumn": 9,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2797a2d5623e2c6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 463,
                  "startColumn": 5,
                  "endLine": 464,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c76e471066c9750b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 666,
                  "startColumn": 5,
                  "endLine": 668,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2fe26933484ea74a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 650,
                  "startColumn": 5,
                  "endLine": 652,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d18cfb6b63e77194:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 627,
                  "startColumn": 5,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "20e099b9107e7dc8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 565,
                  "startColumn": 13,
                  "endLine": 570,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f648016ace20d533:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 13,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b2ec7f2f5f31017e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 5,
                  "endLine": 105,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fd3949bec2e89dd5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 13,
                  "endLine": 109,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dcecc0237390fc30:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 17,
                  "endLine": 90,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 9,
                  "endLine": 203,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e833094eb2b0bdfe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 325,
                  "startColumn": 9,
                  "endLine": 327,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8912dd7ac21ebcd2:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1386,
                  "startColumn": 9,
                  "endLine": 1388,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1916f753761060:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1307,
                  "startColumn": 5,
                  "endLine": 1309,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3820b0135648250f:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1297,
                  "startColumn": 5,
                  "endLine": 1299,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3820b0135648250f:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1287,
                  "startColumn": 5,
                  "endLine": 1289,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3820b0135648250f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1274,
                  "startColumn": 5,
                  "endLine": 1277,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb39dfa5dd211c32:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 264,
                  "startColumn": 9,
                  "endLine": 265,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e9a002d00dff85a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 209,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 189,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 5,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aba918d1d806c6de:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2965506bfc33d748:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 5,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "de469c17ba48e70e:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 5,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "db42c303eb03ae82:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 5,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "de469c17ba48e70e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d794ebb42b780feb:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 191,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb62ae5def86057:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 5,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "53cfc0b4e09ca8b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb64c98589a7279:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' is defined in reserved namespace.\nIdentifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 9,
                  "endLine": 154,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6647bb74e9c0d25:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 9,
                  "endLine": 64,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "509cb7566205b4c3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 5,
                  "endLine": 62,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "32067a4fef7bd883:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 5,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16010eaf015fc38d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4c88e1b5338fcd8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ce834fc72b2a178:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 198,
                  "startColumn": 9,
                  "endLine": 200,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dc4a680d29fd2dc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 169,
                  "startColumn": 9,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe41ad126aaf7e65:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 5,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "18bd47ef9da9cd62:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3f78315f4fe3ac8b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 5,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f4b096b906fe2bda:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 5,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a843360a0d532ad:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db8be36116dd8ab:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 5,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a843360a0d532ad:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db8be360f940d9d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 122,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db8be361195a3c2:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 5,
                  "endLine": 83,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41087fec21bcbc8b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 9,
                  "endLine": 273,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e486c753c70c83d8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 5,
                  "endLine": 72,
                  "endColumn": 117
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d646280c577b7467:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event_common.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 5,
                  "endLine": 50,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3d2afa23fc30bc6b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 5,
                  "endLine": 207,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33ab4ced1425f051:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 328,
                  "startColumn": 5,
                  "endLine": 329,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9eaf19dffd13378a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 903,
                  "startColumn": 5,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9970ad814d33dffc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 891,
                  "startColumn": 9,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2a066e7c3b9d8a0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 785,
                  "startColumn": 5,
                  "endLine": 786,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee389a96aa646dda:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 864,
                  "startColumn": 5,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "996aa618c49f6679:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 999,
                  "startColumn": 5,
                  "endLine": 1001,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "32a0c2b8c4f4555:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 961,
                  "startColumn": 5,
                  "endLine": 962,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fa62f903ad12f4c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 944,
                  "startColumn": 5,
                  "endLine": 945,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "225c1391a925fb49:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 939,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e46dafb4babbe2d0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 929,
                  "startColumn": 5,
                  "endLine": 930,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c14d72b2d645ec0e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 918,
                  "startColumn": 5,
                  "endLine": 919,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee389a96aa646dda:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 690,
                  "startColumn": 5,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "be14ae3470189ff9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 662,
                  "startColumn": 5,
                  "endLine": 663,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdc7630f5e6c3f7b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 634,
                  "startColumn": 5,
                  "endLine": 635,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b43220ee889be02:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 614,
                  "startColumn": 5,
                  "endLine": 615,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c95d278fee4bb0c5:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 594,
                  "startColumn": 5,
                  "endLine": 595,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c95d278fee4bb0c5:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 564,
                  "startColumn": 5,
                  "endLine": 565,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c95d278fee4bb0c5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 5,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "248b1ddcb9aa5607:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 5,
                  "endLine": 78,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c407f02ae3dfbe32:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 5,
                  "endLine": 61,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d804dfe359036e92:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 5,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9f0fe7cfd11c5f01:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 5,
                  "endLine": 113,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c6dabcc59111fed:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 733,
                  "startColumn": 13,
                  "endLine": 734,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "800de90bc39b43e1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 307,
                  "startColumn": 5,
                  "endLine": 308,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83ebc19e40e7c37a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 802,
                  "startColumn": 5,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f6d51a6094594efe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 689,
                  "startColumn": 5,
                  "endLine": 691,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33c6de0c1818132b:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 675,
                  "startColumn": 5,
                  "endLine": 677,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33c6de0c1818132b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 627,
                  "startColumn": 5,
                  "endLine": 628,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a15f3ef513a0bb43:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 230,
                  "startColumn": 5,
                  "endLine": 232,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a45815c21b6ca45a:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 5,
                  "endLine": 152,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a45815c21b6ca45a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 13,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "555dbc59e68c0036:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 5,
                  "endLine": 284,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4af0d3bb799c9a9d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 241,
                  "startColumn": 5,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b8e317c573f7b1d8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 13,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "559e21c1ba7e65d6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 5,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb2c80a5d86e4478:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 823,
                  "startColumn": 5,
                  "endLine": 824,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "361a5eb31e2f40f7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 745,
                  "startColumn": 9,
                  "endLine": 747,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "64ed74e76e1b72e4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 564,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1b50b1f659ae635:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 547,
                  "startColumn": 5,
                  "endLine": 548,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa2fadda795e00b7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 514,
                  "startColumn": 13,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3706a7d87fdf6828:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 291,
                  "startColumn": 5,
                  "endLine": 293,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "56a9f2d85916847e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 5,
                  "endLine": 283,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f421ac6e562396bf:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 5,
                  "endLine": 200,
                  "endColumn": 120
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c70e44f7b5f58595:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 186,
                  "startColumn": 13,
                  "endLine": 190,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f392c7bb5eb2dd59:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 5,
                  "endLine": 76,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9eaf19dffd13378a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 5,
                  "endLine": 64,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3540ac595478e532:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 936,
                  "startColumn": 5,
                  "endLine": 937,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f713d2ffa722430:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 912,
                  "startColumn": 5,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a08809628794e444:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 897,
                  "startColumn": 5,
                  "endLine": 899,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9452497abb07dcfe:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 874,
                  "startColumn": 5,
                  "endLine": 876,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9452497abb07dcfe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 863,
                  "startColumn": 5,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bbec857b5ae8c30:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 672,
                  "startColumn": 9,
                  "endLine": 674,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58d020cb021db21f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 650,
                  "startColumn": 9,
                  "endLine": 652,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fb3ef8436d9fffde:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 407,
                  "startColumn": 5,
                  "endLine": 409,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc9514342ddd557f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 279,
                  "startColumn": 5,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41d859456e0db2f7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 302,
                  "startColumn": 5,
                  "endLine": 303,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9e130521d7253084:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 242,
                  "startColumn": 9,
                  "endLine": 243,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34a8a852a6b753bb:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 5,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "953ebbce652a253:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 5,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd00130ca5402bb0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 13,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "309c4a8e7d1da03d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 17,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d35bb5ae5a4207f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 5,
                  "endLine": 153,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "120c67eb67c08080:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 5,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1ad4814435a6ea20:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 5,
                  "endLine": 70,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26b7e2b3307fb02:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 152,
                  "startColumn": 5,
                  "endLine": 153,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b5bf7f8ea8c4c98:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 5,
                  "endLine": 146,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b5bf7f8ea8c4c98:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 5,
                  "endLine": 139,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9801e8759304ed71:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 9,
                  "endLine": 76,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c938e4d912025f87:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 5,
                  "endLine": 113,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20f244a14336:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 5,
                  "endLine": 105,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20f244a14336:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 5,
                  "endLine": 97,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20f244a14336:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 9,
                  "endLine": 184,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "441638f6b232e28f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f90882c541d34a1b:5",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f90882c541d34a1b:4",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f90882c541d34a1b:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f90882c541d34a1b:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 5,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f90882c541d34a1b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 5,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee7b218e45de5cbd:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 5,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8cdb050022b15b55:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 5,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8cdb050022b15b55:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 5,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8cdb050022b15b55:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 5,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee7b218e45de5cbd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 5,
                  "endLine": 106,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20f244a14336:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 5,
                  "endLine": 98,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20f244a14336:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 5,
                  "endLine": 90,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a6d20faa0ebfd32:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 9,
                  "endLine": 168,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6fc0411ae0cbd45e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 177,
                  "startColumn": 9,
                  "endLine": 179,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "593bac15a6fc77da:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 5,
                  "endLine": 152,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b9173290f1e58759:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 5,
                  "endLine": 140,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b80dc34deb04917d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 5,
                  "endLine": 61,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3096a07a76b21e4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 5,
                  "endLine": 48,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "88b3a26ddd686b8f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 5,
                  "endLine": 40,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b30dc520b8b2a6b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 5,
                  "endLine": 31,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f7edeb418c27c36:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 424,
                  "startColumn": 5,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bfe3a6bd1160083d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 273,
                  "startColumn": 5,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e4240f33f83b4d8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 5,
                  "endLine": 187,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b9c64059cc0ab6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 5,
                  "endLine": 172,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea502458b209984:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 5,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "53cfc0b4e09ca8b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 250,
                  "startColumn": 9,
                  "endLine": 252,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a99de6e62d8fe6e1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5b494d5a515875f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 9,
                  "endLine": 64,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f92228238b8bc08:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 5,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "de469c17bdea6c2b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/reference_to_moveable.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 9,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5a9a22ec19a53918:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endLine": 52,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee6d02ee986211c7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 5,
                  "endLine": 40,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd121bcc1884647f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 5,
                  "endLine": 116,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "69da8a17f6b5f66b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 9,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee73b9a24bd702d3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 5,
                  "endLine": 52,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2ecf82336daff4e7:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 5,
                  "endLine": 44,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2ecf82336daff4e7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 13,
                  "endLine": 150,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94d52a79e6c6ed21:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 5,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86d30ee82f1fde4:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 5,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86d30ee82f1fde4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 5,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e24efd91a4242f62:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 5,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c09b7782420019f6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 5,
                  "endLine": 102,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3b132867c0106fc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 17,
                  "endLine": 50,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 9,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "870051b590bd5897:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 5,
                  "endLine": 112,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "903e30f76d755992:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 5,
                  "endLine": 42,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d15840ad87433732:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 17,
                  "endLine": 54,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2dae2c8450613609:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 5,
                  "endLine": 35,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68b5e7a3517a6b98:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 9,
                  "endLine": 59,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a3489cf138dac30a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 9,
                  "endLine": 30,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a71f0fc567e7caca:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 246,
                  "startColumn": 5,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bfaf58db596eff0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 238,
                  "startColumn": 5,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2d808b1157fb4765:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 230,
                  "startColumn": 5,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "724229d846960499:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 5,
                  "endLine": 216,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "69517b4b348133a5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 5,
                  "endLine": 37,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa89a83fee178bd1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 9,
                  "endLine": 46,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60e39efb3d42e5a0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 5,
                  "endLine": 134,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5cb58acc68d6bbf:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 9,
                  "endLine": 105,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "682db335e0abfb45:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:8",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 122,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:7",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 116,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:6",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:5",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:4",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6a6129b280842ee:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "915752bc0e1f1903:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 5,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d100d6c898e6e6cf:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8651e25f1e07e934:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 5,
                  "endLine": 186,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "98f3d0b6aaf82525:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 17,
                  "endLine": 202,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f7af245ad38d984b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 301,
                  "startColumn": 5,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8786223a489d7005:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 5,
                  "endLine": 99,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41e0f6e7e084a180:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 9,
                  "endLine": 81,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f2bd0b30d8b36a4c:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 9,
                  "endLine": 64,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f2bd0b30d8b36a4c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 316,
                  "startColumn": 5,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bfaf58db596eff0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 308,
                  "startColumn": 5,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2d808b1157fb4765:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 300,
                  "startColumn": 5,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "724229d846960499:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 289,
                  "startColumn": 5,
                  "endLine": 291,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a58860ee68747e2a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 5,
                  "endLine": 100,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7a41bab095228556:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 5,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f4cb246f440c9088:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 5,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8361c14bddea99cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 406,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:7",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 9,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b3e820280cbaa339:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 368,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:6",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 332,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:5",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c47a3e3cc1160c98:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 297,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:4",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 262,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 227,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 192,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc7686d0207909d4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 161,
                  "startColumn": 9,
                  "endLine": 162,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c375aa7a7bda8f87:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 299,
                  "startColumn": 5,
                  "endLine": 300,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9197a42507517a3c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 537,
                  "startColumn": 5,
                  "endLine": 539,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4d73f6873b24441:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'value' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 189,
                  "startColumn": 74,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "85a7fa4d4e2b860c:1",
            "primaryLocationStartColumnFingerprint": "69"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'value' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 86,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1bc96306c7c83979:1",
            "primaryLocationStartColumnFingerprint": "81"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'value' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 90,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6bacdeecb24a84d:1",
            "primaryLocationStartColumnFingerprint": "85"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'value' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 98,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2f5088e0dcd262a8:1",
            "primaryLocationStartColumnFingerprint": "93"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'value' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 75,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b55dc130300002:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'result' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 17,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "df0688ac00f94762:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '_' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'seed' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 14,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2be4f072986f66:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'view' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 49,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1e82a09accfa7d3:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 93,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c65d749c451738c:1",
            "primaryLocationStartColumnFingerprint": "88"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fd29bef30cc9b8b9:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 44,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fbe51b6b2ffa13ea:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 16,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ececc796c2ea7111:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 16,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e62fbb0c09f647e5:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1139,
                  "startColumn": 43,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f726cc660d39c090:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1124,
                  "startColumn": 43,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e6e3b45ff3a881:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1040,
                  "startColumn": 48,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ece99bdda42f5f77:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1021,
                  "startColumn": 16,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb104d3dfd1e7f2f:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 340,
                  "startColumn": 48,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7636e90e8778c2:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 593,
                  "startColumn": 20,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "13615e3d3d33a3de:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 430,
                  "startColumn": 44,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "228f6bff8915863a:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1002,
                  "startColumn": 20,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3859dec2735bb1f:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 957,
                  "startColumn": 44,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "72acd4e967eb7595:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 44,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "85d1df3a15863a99:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 772,
                  "startColumn": 20,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1851ee3781ad928:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 542,
                  "startColumn": 20,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "350b7870b2f052c5:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 640,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "29773c420ebd34fd:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 620,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:3",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 600,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:2",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 570,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 16,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9c82b1fc787aaf8:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__func__' contains double underscores.\nIdentifier '__func__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 555,
                  "startColumn": 16,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d6844473faa6926:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'element_fq_id' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 75,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aae72669100dc7e6:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'skeleton_instance_identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 71,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1dbc93882ca13894:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'proxy_method_instance_identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 32,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff95ddf416e5474:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'proxy_instance_identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 68,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f1cfeab92054fda:1",
            "primaryLocationStartColumnFingerprint": "59"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'method_or_field_id_shift' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 40,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1476ea1561162581:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'unique_method_identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 67,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a3c964453775a17b:1",
            "primaryLocationStartColumnFingerprint": "58"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'proxy_instance_counter_bit_width' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 24,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68990558b8b1d3f3:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'kGoldenRatioConstant' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 38,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2745629f9d3079ee:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'kLeftShiftBits' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 39,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "be5d7e42dd9a388d:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'kRightShiftBits' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 39,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8edcce89f0b8be5:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_id_bit_width' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 24,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f35f7709c86fb13:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_instance_id' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 20,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c2ebba7bfdb00026:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'hash_string_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 31,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f534061eae6f3e04:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_type_deployment' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 20,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83d0df43fa69b359:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_specifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 75,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "592b9945d395a2d9:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_specifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 21,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7de6cbf777fbac8c:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'max_buffer_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 31,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c86279efbe18a0df:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'max_buffer_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 31,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c86279efbe18a0df:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_element_type_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 24,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83a5ff3568247e08:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_element_type_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 24,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83a6086ed4935430:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'input_values' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 43,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebacc3a7f5734ef5:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'input_values' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 43,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e2a9892713d99d:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'input_value_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 21,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'input_value_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 21,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'data_overflow_error' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'data_overflow_error' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 44,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d039919bd4d1b0c:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 43,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "341350eca5a1a9d9:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 43,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b5e1838c9ed57f4:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'it_local_buffer_last_copy1' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 20,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "be50a941432c862d:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'it_local_buffer_last_copy2' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 20,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ced7204060fc78c8:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_string_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 162,
                  "startColumn": 32,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1918654ab4386c77:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_string_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 26,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "36020163e92437aa:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'local_string_buffer' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 26,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "36020163e92437aa:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_element_identifier_view' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 21,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "119883166f5e001:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_type_deployment_hash_string_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 31,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e857cf576416420d:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_instance_id_hash_string_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 31,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5eee4deeaf7eeb78:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_identifier_view' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 21,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5525b8db17116086:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_id_hash_string' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 20,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc64fc5d050e5a3c:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'service_type_deployment_hash_string' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 20,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e765de770581e41c:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'total_string_size' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 27,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8aa4c2cc2441ff38:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'second_copy_start_pos' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 156,
                  "startColumn": 20,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3a2bd6305f768352:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'handle_type' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 127,
                  "startColumn": 68,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f88ce6ab7664a109:1",
            "primaryLocationStartColumnFingerprint": "63"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'instance_identifier' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 203,
                  "startColumn": 53,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3f0d7b0b7a1a4ae0:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'find_service_handle' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 177,
                  "startColumn": 75,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ca4a8ae0a59f530:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'find_service_handle' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 52,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7033e7e4aae1a212:1",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier 'first_free_pos' is defined in reserved namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 14,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a83962b15216ac47:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function allocate is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 6,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3055096abf4d6552:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1716,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 70,
                            "endColumn": 75
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 79,
                            "startColumn": 6,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 9,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 52,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "allocate [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1357,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1716,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 70,
                            "endColumn": 75
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 79,
                            "startColumn": 6,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 9,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 52,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "allocate [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Open is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction Open is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 420,
                  "startColumn": 79,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151ea7f:1",
            "primaryLocationStartColumnFingerprint": "78"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 74,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 196,
                            "startColumn": 19,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "GetShmObjectStatInfo [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 632,
                            "startColumn": 30,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to GetShmObjectStatInfo [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 995,
                            "startColumn": 55,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 990,
                            "startColumn": 6,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "acquireLockFile [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 621,
                            "startColumn": 34,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to acquireLockFile [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 233,
                            "startColumn": 63,
                            "endColumn": 68
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 196,
                            "startColumn": 19,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 632,
                            "startColumn": 30,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1357,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1716,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1155,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1150,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 478,
                            "startColumn": 57,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 458,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "SharedMemoryResource [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 441,
                            "startColumn": 7,
                            "endLine": 443,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "call to SharedMemoryResource [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 438,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "SharedMemoryResource [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 118,
                            "startColumn": 50,
                            "endColumn": 99
                          }
                        },
                        "message": {
                          "text": "call to SharedMemoryResource [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 118,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "MakeSharedEnabler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_construct.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 7,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "call to MakeSharedEnabler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_construct.h"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "_Construct [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/alloc_traits.h"
                          },
                          "region": {
                            "startLine": 661,
                            "startColumn": 4,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to _Construct [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/alloc_traits.h"
                          },
                          "region": {
                            "startLine": 659,
                            "startColumn": 2,
                            "endColumn": 3
                          }
                        },
                        "message": {
                          "text": "construct [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 604,
                            "startColumn": 4,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to construct [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 599,
                            "startColumn": 2,
                            "endColumn": 3
                          }
                        },
                        "message": {
                          "text": "_Sp_counted_ptr_inplace [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 971,
                            "startColumn": 16,
                            "endLine": 972,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to _Sp_counted_ptr_inplace [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 964,
                            "startColumn": 2,
                            "endColumn": 3
                          }
                        },
                        "message": {
                          "text": "__shared_count [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 1712,
                            "startColumn": 14,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "call to __shared_count [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr_base.h"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 2,
                            "endColumn": 3
                          }
                        },
                        "message": {
                          "text": "__shared_ptr [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 464,
                            "startColumn": 4,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "call to __shared_ptr [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 463,
                            "startColumn": 2,
                            "endColumn": 3
                          }
                        },
                        "message": {
                          "text": "shared_ptr [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endLine": 1010,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to shared_ptr [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 132,
                            "startColumn": 12,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 130,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "CreateInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 426,
                            "startColumn": 21,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to CreateInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ~TypeErasedCallQueue is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9d37280b3041179:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 211,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 97,
                            "startColumn": 71,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "call to get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "~TypeErasedCallQueue [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 96,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 578,
                            "startColumn": 17,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 211,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 101,
                            "startColumn": 70,
                            "endColumn": 73
                          }
                        },
                        "message": {
                          "text": "call to get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "~TypeErasedCallQueue [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function CrossCheckServiceInstancesToTypes is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 21,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9b634b81769e2f1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1738,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1733,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1175,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1170,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 17,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1357,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1738,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1733,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1175,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1170,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 117,
                            "startColumn": 13,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1738,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1733,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1175,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1170,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 17,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetElementNamesOfServiceType is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 28,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "13b238c753f96d1e:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1856,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 237,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 28,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "GetElementNamesOfServiceType [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function HasLolaServiceDeployment is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 21,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a0dad30309fc1853:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1856,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 157,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 21,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "HasLolaServiceDeployment [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ~ServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae26dbc34b8eb263:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1856,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 13,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "GetBindingType [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 81,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "call to GetBindingType [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 289,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "GetServiceDiscoveryClient [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 195,
                            "startColumn": 13,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to GetServiceDiscoveryClient [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 173,
                            "startColumn": 20,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "StopFindService [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 29,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to StopFindService [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 48,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "~ServiceDiscovery [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::system_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 21,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d9d1d7368d2e34b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1001,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 414,
                            "startColumn": 13,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 106,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 36,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 35,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 10,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 407,
                            "startColumn": 18,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 165,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c5d73854cbce511d:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 96,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 578,
                            "startColumn": 17,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 499,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 487,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 453,
                            "startColumn": 38,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function TransferSearchRequests is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 284,
                  "startColumn": 6,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63339000aea52f3:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 63,
                            "endColumn": 68
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 6,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 363,
                            "startColumn": 37,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1013,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 50,
                            "startColumn": 99,
                            "endColumn": 104
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 6,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 364,
                            "startColumn": 38,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 38,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "LolaServiceInstanceIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 629,
                            "startColumn": 28,
                            "endColumn": 111
                          }
                        },
                        "message": {
                          "text": "call to LolaServiceInstanceIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 625,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 366,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1013,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 71,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 63,
                            "startColumn": 13,
                            "endColumn": 93
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/hashtable_policy.h"
                          },
                          "region": {
                            "startLine": 1310,
                            "startColumn": 18,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/hashtable_policy.h"
                          },
                          "region": {
                            "startLine": 1306,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "_M_hash_code [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/hashtable.h"
                          },
                          "region": {
                            "startLine": 1677,
                            "startColumn": 34,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "call to _M_hash_code [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/hashtable.h"
                          },
                          "region": {
                            "startLine": 1666,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "find [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unordered_map.h"
                          },
                          "region": {
                            "startLine": 876,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to find [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unordered_map.h"
                          },
                          "region": {
                            "startLine": 875,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "find [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 634,
                            "startColumn": 60,
                            "endColumn": 64
                          }
                        },
                        "message": {
                          "text": "call to find [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 625,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 366,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function operator() is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 64,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4462456455c5cba2:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1013,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 95,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 150,
                            "startColumn": 6,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 437,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1716,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 804,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 784,
                            "startColumn": 6,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 508,
                            "startColumn": 13,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 488,
                            "startColumn": 6,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 446,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1013,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 95,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 150,
                            "startColumn": 6,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 437,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1716,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1711,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 804,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 784,
                            "startColumn": 6,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 508,
                            "startColumn": 13,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 488,
                            "startColumn": 6,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 446,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef532dac37141c04:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 96,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 578,
                            "startColumn": 17,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 499,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 487,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 382,
                            "startColumn": 26,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function cend is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction cend is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "11dca305bfe3c1c3:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 96,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 578,
                            "startColumn": 17,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 499,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 487,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 453,
                            "startColumn": 38,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 109,
                            "startColumn": 96,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr_bounds_check.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 578,
                            "startColumn": 17,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DoesOffsetPtrNotInSharedMemoryPassBoundsChecks [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 499,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 487,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 453,
                            "startColumn": 38,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to GetLastElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Create is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction Create is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 65,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "400da7cb1eef1040:1",
            "primaryLocationStartColumnFingerprint": "60"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 231,
                            "startColumn": 97,
                            "endColumn": 102
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1060,
                            "startColumn": 11,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1044,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "__visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1815,
                            "startColumn": 5,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1756,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1878,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 245,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 194,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endLine": 58,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 41,
                            "startColumn": 65,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "Create [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 997,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 993,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 38,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateSkeletonEventProperties [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 224,
                            "startColumn": 77,
                            "endColumn": 114
                          }
                        },
                        "message": {
                          "text": "call to CreateSkeletonEventProperties [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1060,
                            "startColumn": 11,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1044,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "__visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1815,
                            "startColumn": 5,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1756,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1878,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 245,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 194,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endLine": 58,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 41,
                            "startColumn": 65,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "Create [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1013,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1009,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 67,
                            "startColumn": 110,
                            "endColumn": 115
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 38,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateSkeletonEventProperties [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 224,
                            "startColumn": 77,
                            "endColumn": 114
                          }
                        },
                        "message": {
                          "text": "call to CreateSkeletonEventProperties [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1060,
                            "startColumn": 11,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1044,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "__visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1815,
                            "startColumn": 5,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __visit_invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1756,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1878,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __do_visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 245,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 194,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endLine": 58,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to CreateGenericSkeletonEventOrField [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 41,
                            "startColumn": 65,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "Create [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1856,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1851,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 245,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 194,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "CreateGenericSkeletonEventOrField [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endLine": 58,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to CreateGenericSkeletonEventOrField [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 41,
                            "startColumn": 65,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "Create [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 239,
                  "startColumn": 14,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0438c8ad07d4c22:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1001,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 414,
                            "startColumn": 13,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 106,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 36,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 35,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 10,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 407,
                            "startColumn": 18,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::system_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 14,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bc739b6551400ac9:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1001,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 414,
                            "startColumn": 13,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 106,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 36,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 35,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 10,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 407,
                            "startColumn": 18,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Unsubscribe is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction Unsubscribe is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction Unsubscribe is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction Unsubscribe is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction Unsubscribe is declared noexcept(true) but can throw exceptions of type std::system_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 6,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b92ec79164789967:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1001,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 414,
                            "startColumn": 13,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 106,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 36,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 35,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 10,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 407,
                            "startColumn": 18,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::system_error.\nFunction StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::system_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 6,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b444890b16795ed:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 111,
                            "startColumn": 5,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1005,
                            "startColumn": 2,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/optional"
                          },
                          "region": {
                            "startLine": 1001,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 414,
                            "startColumn": 13,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1349,
                            "startColumn": 5,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1348,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1355,
                            "startColumn": 7,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1352,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1727,
                            "startColumn": 2,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/variant"
                          },
                          "region": {
                            "startLine": 1722,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 106,
                            "startColumn": 45,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 36,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 35,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to ParseTraceConfig [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "throw ... [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/thread/pthread_attr.hpp"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 10,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 407,
                            "startColumn": 18,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to set_stack_size [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 393,
                            "startColumn": 10,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 13,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to create_thread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 171,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 11,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/jthread.hpp"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 43,
                            "endLine": 55,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to jthread [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 36,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to InitializeThreads [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 7,
                            "endColumn": 83
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/thread_pool.cpp"
                          },
                          "region": {
                            "startLine": 23,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 7,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to ThreadPool [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 47,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 7,
                            "endLine": 70,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to MessagePassingService [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 57,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 30,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/unique_ptr.h"
                          },
                          "region": {
                            "startLine": 1069,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 29,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_unique [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 187,
                            "startColumn": 25,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "call to CreateBindingRuntimes [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 174,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 161,
                            "startColumn": 13,
                            "endColumn": 97
                          }
                        },
                        "message": {
                          "text": "call to Runtime [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 36,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to operator() [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 60,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 96,
                            "startColumn": 14,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to __invoke_impl [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/invoke.h"
                          },
                          "region": {
                            "startLine": 90,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 14,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/functional"
                          },
                          "region": {
                            "startLine": 110,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [system_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [system_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 3,
          "rule": {
            "id": "cpp/misra/no-memory-functions-from-c-string",
            "index": 114
          },
          "message": {
            "text": "Call to banned function 'memcpy' from <cstring>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 183,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8887f54b8569c47:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 3,
          "rule": {
            "id": "cpp/misra/no-memory-functions-from-c-string",
            "index": 114
          },
          "message": {
            "text": "Call to banned function 'memcpy' from <cstring>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 19,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1ba9b68d2bb115ba:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 3,
          "rule": {
            "id": "cpp/misra/no-memory-functions-from-c-string",
            "index": 114
          },
          "message": {
            "text": "Call to banned function 'memcpy' from <cstring>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 26,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e906356956db03ae:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 3,
          "rule": {
            "id": "cpp/misra/no-memory-functions-from-c-string",
            "index": 114
          },
          "message": {
            "text": "Call to banned function 'memcpy' from <cstring>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 26,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b2635e1d588f69e:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 3,
          "rule": {
            "id": "cpp/misra/no-memory-functions-from-c-string",
            "index": 114
          },
          "message": {
            "text": "Call to banned function 'memcpy' from <cstring>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 26,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f18c3fc54d4f6fb:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'event_data_control_shared' for function [score::mw::com::impl::lola::ConsumerEventDataControlLocalView<AtomicIndirectorType>::ConsumerEventDataControlLocalView](1).\nUnused parameter 'event_data_control_shared' for function [score::mw::com::impl::lola::ConsumerEventDataControlLocalView<AtomicIndirectorType>::ConsumerEventDataControlLocalView](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 23,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "93c0f219e0e4757b:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "endColumn": 91
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::ConsumerEventDataControlLocalView<AtomicIndirectorType>::ConsumerEventDataControlLocalView"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 58,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::ConsumerEventDataControlLocalView<AtomicIndirectorType>::ConsumerEventDataControlLocalView"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'asil_qm_control_local' for function [score::mw::com::impl::lola::EventDataControlComposite<AtomicIndirectorType>::EventDataControlComposite](1).\nUnused parameter 'asil_qm_control_local' for function [score::mw::com::impl::lola::EventDataControlComposite<AtomicIndirectorType>::EventDataControlComposite](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 62,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bf5f456bf4c3d961:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "endColumn": 75
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::EventDataControlComposite<AtomicIndirectorType>::EventDataControlComposite"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 50,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::EventDataControlComposite<AtomicIndirectorType>::EventDataControlComposite"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'other' for function [score::mw::com::impl::TracingConfiguration::TracingConfiguration](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 49,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "25098610897a9ec9:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 5,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "score::mw::com::impl::TracingConfiguration::TracingConfiguration"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'other' for function [score::mw::com::impl::Configuration::Configuration](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 35,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc99f28512e32bc0:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 5,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "score::mw::com::impl::Configuration::Configuration"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'handler_weak_ptr' for function [score::mw::com::impl::ServiceDiscovery::BindingSpecificStartFindService](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 307,
                  "startColumn": 102,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9118e6d3ec43b5e:2",
            "primaryLocationStartColumnFingerprint": "46"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 306,
                  "startColumn": 6,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "score::mw::com::impl::ServiceDiscovery::BindingSpecificStartFindService"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'ptr' for function [score::mw::com::impl::lola::SamplePtr<SampleType>::SamplePtr](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 23,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ad0b80326ae5c61:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SamplePtr<SampleType>::SamplePtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'other' for function [score::mw::com::impl::ProxyBase::ProxyBase](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 27,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6e410e18362ff96b:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 5,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "score::mw::com::impl::ProxyBase::ProxyBase"
              }
            }
          ]
        },
        {
          "ruleIndex": 5,
          "rule": {
            "id": "cpp/misra/include-directives-preceded-by-preprocessor-directives",
            "index": 75
          },
          "message": {
            "text": "#include \"score/mw/com/impl/configuration/binding_service_type_deployment_impl.h\" is preceded by a non-preprocessor or comment code element."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fed5fd64dd62265a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 5,
          "rule": {
            "id": "cpp/misra/include-directives-preceded-by-preprocessor-directives",
            "index": 75
          },
          "message": {
            "text": "#include \"score/mw/com/impl/methods/callable_traits_impl.h\" is preceded by a non-preprocessor or comment code element."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aca76a5a79c0d320:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 6,
          "rule": {
            "id": "cpp/misra/object-used-while-in-potentially-moved-from-state",
            "index": 138
          },
          "message": {
            "text": "The argument of the [call to move](1) may be indeterminate when accessed at this location."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 37,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f53482f9f9fbea6:1",
            "primaryLocationStartColumnFingerprint": "28"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 30,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "call to move"
              }
            }
          ]
        },
        {
          "ruleIndex": 6,
          "rule": {
            "id": "cpp/misra/object-used-while-in-potentially-moved-from-state",
            "index": 138
          },
          "message": {
            "text": "The argument of the [call to move](1) may be indeterminate when accessed at this location."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 37,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cd17ac8e0ed8f37:1",
            "primaryLocationStartColumnFingerprint": "28"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 30,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "call to move"
              }
            }
          ]
        },
        {
          "ruleIndex": 7,
          "rule": {
            "id": "cpp/misra/bit-fields-should-not-be-declared-misra-cpp",
            "index": 16
          },
          "message": {
            "text": "Bit-field used within a class [TransactionLogSlot](1) that is not a hardware or protocol class."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 18,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c0c9956d9b607170:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "startColumn": 7,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "TransactionLogSlot"
              }
            }
          ]
        },
        {
          "ruleIndex": 7,
          "rule": {
            "id": "cpp/misra/bit-fields-should-not-be-declared-misra-cpp",
            "index": 16
          },
          "message": {
            "text": "Bit-field used within a class [TransactionLogSlot](1) that is not a hardware or protocol class."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 18,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a137aa54646904ee:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "startColumn": 7,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "TransactionLogSlot"
              }
            }
          ]
        },
        {
          "ruleIndex": 8,
          "rule": {
            "id": "cpp/misra/cast-removes-const-or-volatile-from-pointer-or-reference",
            "index": 22
          },
          "message": {
            "text": "Cast that does not preserve const qualifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 264,
                  "startColumn": 29,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2bc610e694706447:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 9,
          "rule": {
            "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
            "index": 143
          },
          "message": {
            "text": "Overriding function does not have the same default parameters as [overridden function](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 10,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "31b43e9975c507ad:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_shared_resource_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 18,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "overridden function"
              }
            }
          ]
        },
        {
          "ruleIndex": 9,
          "rule": {
            "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
            "index": 143
          },
          "message": {
            "text": "Overriding function does not have the same default parameters as [overridden function](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 6,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97e810290534713d:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_shared_resource_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 18,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "overridden function"
              }
            }
          ]
        },
        {
          "ruleIndex": 9,
          "rule": {
            "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
            "index": 143
          },
          "message": {
            "text": "Overriding function does not have the same default parameters as [overridden function](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 169,
                  "startColumn": 46,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9fc21bbe9bf8f4f:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 58,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "overridden function"
              }
            }
          ]
        },
        {
          "ruleIndex": 9,
          "rule": {
            "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
            "index": 143
          },
          "message": {
            "text": "Overriding function does not have the same default parameters as [overridden function](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 671,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1775d2ef9014a4ef:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 26,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "overridden function"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [DereferenceEvent](1) do not use the same names as declaration [DereferenceEvent](2)\nThe parameter names of re-declaration of [DereferenceEvent](1) do not use the same names as declaration [DereferenceEvent](3)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 10,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef6bd69d25e72bba:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 10,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 63,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 6,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [DereferenceEvent](1) do not use the same names as declaration [DereferenceEvent](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 63,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eae618b89bcd62cb:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 63,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 10,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [DereferenceEvent](1) do not use the same names as declaration [DereferenceEvent](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 6,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eae618b89bcd62cb:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 6,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 10,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "DereferenceEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [GetEventSlotTimestamp](1) do not use the same names as declaration [GetEventSlotTimestamp](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 82,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6884e4298bf5c7de:1",
            "primaryLocationStartColumnFingerprint": "81"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 82,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 37,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [GetEventSlotTimestamp](1) do not use the same names as declaration [GetEventSlotTimestamp](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 33,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6884e4298bf5c7de:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 33,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 37,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [TypeErasedCallQueue](1) do not use the same names as declaration [TypeErasedCallQueue](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 5,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c6ee9aefaf8f687:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 5,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "TypeErasedCallQueue"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "TypeErasedCallQueue"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Deserialize](1) do not use the same names as declaration [Deserialize](2)\nThe parameter names of re-declaration of [Deserialize](1) do not use the same names as declaration [Deserialize](3)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91c5147229407385:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 32,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "Deserialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 34,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Deserialize"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 6,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "Deserialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [SlotDecrementer](1) do not use the same names as declaration [SlotDecrementer](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 5,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "27e02802193e572e:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 5,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "SlotDecrementer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "SlotDecrementer"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [TypeErasedCallQueue](1) do not use the same names as declaration [TypeErasedCallQueue](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "680a3c30ebe98683:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "TypeErasedCallQueue"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 5,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "TypeErasedCallQueue"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [GetEventSlotTimestamp](1) do not use the same names as declaration [GetEventSlotTimestamp](2)\nThe parameter names of re-declaration of [GetEventSlotTimestamp](1) do not use the same names as declaration [GetEventSlotTimestamp](3)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 37,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae0abdf208b10029:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 37,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 82,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 33,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "GetEventSlotTimestamp"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of override of [RegisterHandler](1) do not use the same names as declaration [RegisterHandler](2)\nThe parameter names of override of [RegisterHandler](1) do not use the same names as declaration [RegisterHandler](3)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 26,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7abf1511b59a2313:1",
            "primaryLocationStartColumnFingerprint": "21"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 26,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "RegisterHandler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 18,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "RegisterHandler"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 14,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "RegisterHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [SlotDecrementer](1) do not use the same names as declaration [SlotDecrementer](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "90cdfb6c6538ce75:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "SlotDecrementer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 5,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "SlotDecrementer"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Deserialize](1) do not use the same names as declaration [Deserialize](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 34,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d428fd349127dead:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 34,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Deserialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 32,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "Deserialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Deserialize](1) do not use the same names as declaration [Deserialize](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 6,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d428fd349127dead:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 6,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "Deserialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 32,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "Deserialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Create](1) do not use the same names as declaration [Create](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 105,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a83ee646ec8c915:1",
            "primaryLocationStartColumnFingerprint": "104"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 105,
                  "endColumn": 106
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Create](1) do not use the same names as declaration [Create](2)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a83ee646ec8c915:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 10,
          "rule": {
            "id": "cpp/misra/declarations-of-a-function-same-parameter-name",
            "index": 38
          },
          "message": {
            "text": "The parameter names of re-declaration of [Create](1) do not use the same names as declaration [Create](2)\nThe parameter names of re-declaration of [Create](1) do not use the same names as declaration [Create](3)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f2c8473d0b0d921:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 105,
                  "endColumn": 106
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetBoundsFromIdentifier](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_registry.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 39,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "54d358cc148cd3de:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_registry.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 6,
                  "endColumn": 76
                }
              },
              "message": {
                "text": "GetBoundsFromIdentifier"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions_](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 32,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "827309818e76be7a:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 32,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "permissions_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OpenSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 447,
                  "startColumn": 50,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac50da5190e5827e:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1074,
                  "startColumn": 46,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "OpenSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 423,
                  "startColumn": 55,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd463119ea8c0a3c:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1031,
                  "startColumn": 73,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateLockFileForNamedSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 421,
                  "startColumn": 50,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6d2e2791ae486c00:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1013,
                  "startColumn": 46,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "CreateLockFileForNamedSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 86,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d6f5079417e17594:1",
            "primaryLocationStartColumnFingerprint": "81"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 272,
                  "startColumn": 84,
                  "endColumn": 95
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OpenImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 365,
                  "startColumn": 50,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "659f71a226bda3c:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 601,
                  "startColumn": 35,
                  "endColumn": 65
                }
              },
              "message": {
                "text": "OpenImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateOrOpenImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 351,
                  "startColumn": 50,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "24fe721d5fcb4d9c:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 552,
                  "startColumn": 35,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "CreateOrOpenImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [initialize_callback](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 352,
                  "startColumn": 86,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aad1e5505ebd546d:1",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 553,
                  "startColumn": 93,
                  "endColumn": 112
                }
              },
              "message": {
                "text": "initialize_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 353,
                  "startColumn": 90,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b49a9a224fd1b5bc:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 554,
                  "startColumn": 97,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 50,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1aba11e535575e49:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 498,
                  "startColumn": 35,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "CreateImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [initialize_callback](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 345,
                  "startColumn": 86,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8eed518f4ce06b:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 499,
                  "startColumn": 93,
                  "endColumn": 112
                }
              },
              "message": {
                "text": "initialize_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 346,
                  "startColumn": 84,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d2bcf300d2f722e:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 500,
                  "startColumn": 91,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 338,
                  "startColumn": 34,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:6",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 423,
                  "startColumn": 30,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [initialize_callback](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 28,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "613219d7ded5ef14:3",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 402,
                  "startColumn": 24,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "initialize_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 319,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b8f0d6f2a4e0a1a:3",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 403,
                  "startColumn": 28,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 320,
                  "startColumn": 34,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:5",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 404,
                  "startColumn": 30,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [initialize_callback](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 294,
                  "startColumn": 28,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "613219d7ded5ef14:2",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 377,
                  "startColumn": 24,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "initialize_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 295,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b8f0d6f2a4e0a1a:2",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 28,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 296,
                  "startColumn": 34,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:4",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 379,
                  "startColumn": 30,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [initialize_callback](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 28,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "613219d7ded5ef14:1",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 356,
                  "startColumn": 24,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "initialize_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b8f0d6f2a4e0a1a:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 357,
                  "startColumn": 28,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 34,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:3",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 358,
                  "startColumn": 30,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acquireLockAndOpenSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 228,
                  "startColumn": 50,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd6df6985419b5c8:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 616,
                  "startColumn": 6,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "acquireLockAndOpenSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 33,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c89d4d5de443966:1",
            "primaryLocationStartColumnFingerprint": "28"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 898,
                  "startColumn": 68,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 51,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26f73425478b28dc:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 459,
                  "startColumn": 69,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 51,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:2",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 448,
                  "startColumn": 69,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 51,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 439,
                  "startColumn": 69,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [access_control](1) where the type alias used is '[AccessControl](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 82,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "957b093b02e1eaef:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 84,
                  "endColumn": 98
                }
              },
              "message": {
                "text": "access_control"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "AccessControl"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Unlink](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 50,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8947a86982684654:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 46,
                  "endColumn": 69
                }
              },
              "message": {
                "text": "Unlink"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [AllocateNamedTypedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 50,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bea7b9256d1ed9d4:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 46,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "AllocateNamedTypedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [permissions](1) where the type alias used is '[UserPermissions](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 44,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "385cc105b0a2b6c4:1",
            "primaryLocationStartColumnFingerprint": "35"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 40,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "permissions"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/user_permission.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "UserPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetCerrLogger](1) where the type alias used is '[LoggingCallback](2)'.\nDeclaration entry has a different type alias than [GetCerrLogger](3) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 17,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdab4ae2898a7439:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "GetCerrLogger"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "GetCerrLogger"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [logger](1) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16b7699901c9e406:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "logger"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [logger_](1) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 28,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d9187adc32a0172:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 28,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "logger_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OpenSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1074,
                  "startColumn": 46,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8f0464db94dd30e:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 447,
                  "startColumn": 50,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "OpenSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateLockFileForNamedSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1013,
                  "startColumn": 46,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef558b5c430088f:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 421,
                  "startColumn": 50,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "CreateLockFileForNamedSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OpenImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 601,
                  "startColumn": 35,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef591a3493117892:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 365,
                  "startColumn": 50,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "OpenImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateOrOpenImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 552,
                  "startColumn": 35,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "424b9c2ca68cdb4e:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 351,
                  "startColumn": 50,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "CreateOrOpenImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateImpl](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 498,
                  "startColumn": 35,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dda6c5018a7a4de8:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 50,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "CreateImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 423,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:4",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 338,
                  "startColumn": 34,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 404,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:3",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 320,
                  "startColumn": 34,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 379,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:2",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 296,
                  "startColumn": 34,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 358,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65467bdc98572d12:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 34,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acquireLockAndOpenSharedMemory](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 616,
                  "startColumn": 6,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "82eda29cbb23cc4b:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 228,
                  "startColumn": 50,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "acquireLockAndOpenSharedMemory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 459,
                  "startColumn": 69,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1d56e3973affe1f:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 51,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 448,
                  "startColumn": 69,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3bc2eb18fe37e881:2",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 51,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [acl_factory](1) where the type alias used is '[AccessControlListFactory](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 439,
                  "startColumn": 69,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3bc2eb18fe37e881:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 51,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "acl_factory"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "AccessControlListFactory"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetCerrLogger](1) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 17,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "49802b00ff0cad38:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "GetCerrLogger"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [SendWithCallback](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 232,
                  "startColumn": 46,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8399991f40d62b73:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 50,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "SendWithCallback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Send](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 46,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4beff1058f64fd20:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 50,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "Send"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [SendWithCallback](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 50,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ce06d6243c4b0131:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 232,
                  "startColumn": 46,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "SendWithCallback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Send](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 50,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f17b8404ff4b128:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 46,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "Send"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [posix_receive_buffer_](1) where the type alias used is '[vector](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 43,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "835e90d7fd78b6ec:1",
            "primaryLocationStartColumnFingerprint": "38"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 43,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "posix_receive_buffer_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "vector"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [poll_endpoints_](1) where the type alias used is '[vector](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 50,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "527438790a1f72cc:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 50,
                  "endColumn": 65
                }
              },
              "message": {
                "text": "poll_endpoints_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "vector"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [poll_fds_](1) where the type alias used is '[vector](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 37,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15f8915a553d9c14:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 37,
                  "endColumn": 46
                }
              },
              "message": {
                "text": "poll_fds_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "vector"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [logger_](1) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 21,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f117a172dd9cd772:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 21,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "logger_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [SendProtocolMessage](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 50,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f587025e817b076e:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 190,
                  "startColumn": 46,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "SendProtocolMessage"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator<<](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 30,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9ca1390add604bc:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "operator<<"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [log_stream](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9ca1390add604bc:1",
            "primaryLocationStartColumnFingerprint": "69"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 70,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "log_stream"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [offset](1) where the type alias used is '[difference_type](2)'.\nDeclaration entry has a different type alias than [offset](3) where the type alias used is '[difference_type](2)'.\nDeclaration entry has a different type alias than [offset](3) where the type alias used is '[difference_type](4)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 592,
                  "startColumn": 100,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2e0da818c9ae27c:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 298,
                  "startColumn": 71,
                  "endColumn": 77
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "difference_type"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 592,
                  "startColumn": 100,
                  "endColumn": 106
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 4,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "difference_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [offset](1) where the type alias used is '[difference_type](2)'.\nDeclaration entry has a different type alias than [offset](3) where the type alias used is '[difference_type](2)'.\nDeclaration entry has a different type alias than [offset](3) where the type alias used is '[difference_type](4)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 552,
                  "startColumn": 46,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f94305ac5055b046:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 287,
                  "startColumn": 68,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "difference_type"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 552,
                  "startColumn": 46,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 4,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "difference_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [offset](1) where the type alias used is '[difference_type](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 298,
                  "startColumn": 71,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97818f6d20b0f960:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 592,
                  "startColumn": 100,
                  "endColumn": 106
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "difference_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [offset](1) where the type alias used is '[difference_type](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 287,
                  "startColumn": 68,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28978b564cb7c47d:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 552,
                  "startColumn": 46,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "offset"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "difference_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [call_method_handlers_](1) where the type alias used is '[CallMethodMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 23,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b9ac3dce4dbcc6:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 23,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "call_method_handlers_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 189,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "CallMethodMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribe_service_method_handlers_](1) where the type alias used is '[UnsubscribeServiceMethodMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 37,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "abe957ec4db96fdd:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 37,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "unsubscribe_service_method_handlers_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 371,
                  "startColumn": 11,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "UnsubscribeServiceMethodMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [subscribe_service_method_handlers_](1) where the type alias used is '[SubscribeServiceMethodMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 367,
                  "startColumn": 35,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d20bcd8f5cb5736:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 367,
                  "startColumn": 35,
                  "endColumn": 69
                }
              },
              "message": {
                "text": "subscribe_service_method_handlers_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 186,
                  "startColumn": 11,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "SubscribeServiceMethodMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [event_update_remote_registrations_](1) where the type alias used is '[EventUpdateRegistrationCountMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 363,
                  "startColumn": 41,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e93bc5c5d1bdd18a:1",
            "primaryLocationStartColumnFingerprint": "36"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 363,
                  "startColumn": 41,
                  "endColumn": 75
                }
              },
              "message": {
                "text": "event_update_remote_registrations_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 11,
                  "endColumn": 46
                }
              },
              "message": {
                "text": "EventUpdateRegistrationCountMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [event_update_interested_nodes_](1) where the type alias used is '[EventUpdateNodeIdMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 350,
                  "startColumn": 30,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "588ad85f07780022:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 350,
                  "startColumn": 30,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "event_update_interested_nodes_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 183,
                  "startColumn": 11,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "EventUpdateNodeIdMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [event_update_handlers_](1) where the type alias used is '[EventUpdateNotifierMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 32,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a083b9e653829b4e:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 32,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "event_update_handlers_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 11,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "EventUpdateNotifierMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateSendMessageWithReplyCallback](1) where the type alias used is '[MessageCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 196,
                  "startColumn": 38,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2f567c8858919126:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 303,
                  "startColumn": 34,
                  "endColumn": 99
                }
              },
              "message": {
                "text": "CreateSendMessageWithReplyCallback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/server_types.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "MessageCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [callback](1) where the type alias used is '[HandlerStatusChangeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 61,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8f6bf562e0c02524:1",
            "primaryLocationStartColumnFingerprint": "52"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1469,
                  "startColumn": 57,
                  "endColumn": 65
                }
              },
              "message": {
                "text": "callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "HandlerStatusChangeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [method_call_callback](1) where the type alias used is '[MethodCallHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 86,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b60c9d0393014a7:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1267,
                  "startColumn": 47,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "method_call_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 116,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "MethodCallHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribed_callback](1) where the type alias used is '[ServiceMethodUnsubscribedHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 66,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f2c73ecf9fdfeb3:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1248,
                  "startColumn": 62,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "unsubscribed_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 11,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "ServiceMethodUnsubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [subscribed_callback](1) where the type alias used is '[ServiceMethodSubscribedHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 64,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "73c3987b526f682f:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1228,
                  "startColumn": 60,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "subscribed_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 11,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "ServiceMethodSubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [allowed_proxy_uids](1) where the type alias used is '[AllowedConsumerUids](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 53,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f905908053be47c8:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1229,
                  "startColumn": 49,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "allowed_proxy_uids"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 11,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "AllowedConsumerUids"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [callback](1) where the type alias used is '[HandlerStatusChangeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 88,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f1edebf6732b5dc:1",
            "primaryLocationStartColumnFingerprint": "28"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 33,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "HandlerStatusChangeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterMethodCallHandler](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 122,
                  "startColumn": 49,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab24501b775b18bd:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 181,
                  "startColumn": 37,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "RegisterMethodCallHandler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [method_call_callback](1) where the type alias used is '[MethodCallHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 27,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8d5c5a543d04e7f3:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 23,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "method_call_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 116,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "MethodCallHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterOnServiceMethodUnsubscribedHandler](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 51,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d053fa64b2611894:1",
            "primaryLocationStartColumnFingerprint": "46"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 164,
                  "startColumn": 47,
                  "endColumn": 112
                }
              },
              "message": {
                "text": "RegisterOnServiceMethodUnsubscribedHandler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribed_callback](1) where the type alias used is '[ServiceMethodUnsubscribedHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 42,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "256abf36bd576841:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 38,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "unsubscribed_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 11,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "ServiceMethodUnsubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterOnServiceMethodSubscribedHandler](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 49,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a663444edca42800:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 45,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "RegisterOnServiceMethodSubscribedHandler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [subscribed_callback](1) where the type alias used is '[ServiceMethodSubscribedHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 40,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff7ea7318bfe2ea4:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 36,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "subscribed_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 11,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "ServiceMethodSubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [allowed_proxy_uids](1) where the type alias used is '[AllowedConsumerUids](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 29,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d8e7d7d86cc2df6f:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 25,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "allowed_proxy_uids"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 11,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "AllowedConsumerUids"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[MethodCallRegistrationGuard](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 40,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4cdf9ad5cc3172c:1",
            "primaryLocationStartColumnFingerprint": "35"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 29,
                  "endColumn": 71
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_call_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "MethodCallRegistrationGuard"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[MethodSubscriptionRegistrationGuard](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 48,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fce4e87e94727508:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 37,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_subscription_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "MethodSubscriptionRegistrationGuard"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[MethodUnsubscriptionRegistrationGuard](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 50,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6bd3788f4f53934e:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 39,
                  "endColumn": 91
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/method_unsubscription_registration_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "MethodUnsubscriptionRegistrationGuard"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribe_callback](1) where the type alias used is '[UnsubscribeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 75,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b548b979f1559509:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 243,
                  "startColumn": 96,
                  "endColumn": 116
                }
              },
              "message": {
                "text": "unsubscribe_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 11,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "UnsubscribeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 79,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ece31c62dc3d987:1",
            "primaryLocationStartColumnFingerprint": "74"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 36,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 83,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86b24450d2476787:1",
            "primaryLocationStartColumnFingerprint": "78"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 198,
                  "startColumn": 36,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 73,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dcc115042c0d455f:1",
            "primaryLocationStartColumnFingerprint": "68"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 175,
                  "startColumn": 94,
                  "endColumn": 119
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribe_callback](1) where the type alias used is '[UnsubscribeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 69,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "301e0b219eefac08:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 90,
                  "endColumn": 110
                }
              },
              "message": {
                "text": "unsubscribe_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 11,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "UnsubscribeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1452d76528a61e6b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 21,
                  "endColumn": 53
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 63,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb175be87677f85b:1",
            "primaryLocationStartColumnFingerprint": "58"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 73,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator<<](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 30,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c098f902f095c12:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "operator<<"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [log_stream](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c098f902f095c12:1",
            "primaryLocationStartColumnFingerprint": "69"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 70,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "log_stream"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator<<](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 30,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9ca1390add604bc:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "operator<<"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [log_stream](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9ca1390add604bc:1",
            "primaryLocationStartColumnFingerprint": "69"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 70,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "log_stream"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9c4d6f063e33d8:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 21,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 82,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "46067d415ec751c8:1",
            "primaryLocationStartColumnFingerprint": "77"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 100,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 69,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e0cbac127b8553f:1",
            "primaryLocationStartColumnFingerprint": "64"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 85,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterProxyElement](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 224,
                  "startColumn": 52,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac90797806846350:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 48,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "RegisterProxyElement"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 64,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c183e89693b375fc:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 60,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 64,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b78684ec9f13a34a:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 60,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribe_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 64,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1677ef21ecb5788a:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 60,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "unsubscribe_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "17c6e194d7a6465:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 21,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 59,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4344d71d3e866844:1",
            "primaryLocationStartColumnFingerprint": "54"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 65,
                  "endColumn": 76
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 58,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e612e7d52c9fa5a7:1",
            "primaryLocationStartColumnFingerprint": "53"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 58,
                  "endColumn": 69
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [serialized_json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 46,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16d138cb33f5611d:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 46,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "serialized_json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'.\nDeclaration entry has a different type alias than [Serialize](3) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 99,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b2c925451cf45e2:1",
            "primaryLocationStartColumnFingerprint": "98"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 99,
                  "endColumn": 100
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 18,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "Serialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'.\nDeclaration entry has a different type alias than [json_object](3) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 119,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d6875f54654341dc:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 119,
                  "startColumn": 32,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 70,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "json_object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'.\nDeclaration entry has a different type alias than [Serialize](3) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 14,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b2c925451cf45e2:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 99,
                  "endColumn": 100
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 18,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "Serialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [methods_](1) where the type alias used is '[MethodIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 21,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8501bc216afa8c7:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 21,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "methods_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "MethodIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields_](1) where the type alias used is '[FieldIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 20,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "18d0a5bb559b1199:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 20,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "fields_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "FieldIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events_](1) where the type alias used is '[EventIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 20,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8e68f1efd71e634:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 20,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "events_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "EventIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'.\nDeclaration entry has a different type alias than [Serialize](3) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 18,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bef1beac3fbcb2d2:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 99,
                  "endColumn": 100
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 14,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "Serialize"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[EventIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 58,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "73318b1c613b49b7:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 20,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "EventIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[FieldIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 58,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc09d6b9bfb28794:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 20,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "FieldIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [methods](1) where the type alias used is '[MethodIdMapping](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 59,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c585d4cdcc8574cd:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 21,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "methods"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "MethodIdMapping"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 70,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4fa59c12e9748101:1",
            "primaryLocationStartColumnFingerprint": "65"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 119,
                  "startColumn": 32,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "17c6e194d7a6465:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 21,
                  "endColumn": 53
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 63,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b9875d437f733d42:1",
            "primaryLocationStartColumnFingerprint": "58"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 73,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6047aeabe1718806:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 6,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 60,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfcfec2cd78bc4cc:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 67,
                  "endColumn": 78
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15e78ce1000006db:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 6,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 63,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34a21cb5bdc728cd:1",
            "primaryLocationStartColumnFingerprint": "58"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 73,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a976f05d72004fe1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 21,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 82,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aebed940f095707e:1",
            "primaryLocationStartColumnFingerprint": "77"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 100,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 69,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "edac79e96dd8dbb:1",
            "primaryLocationStartColumnFingerprint": "64"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 85,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c534e5f5b6f353c:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 21,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [serialized_lola_method_instance_deployment](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 36,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a461543b003aa4f4:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 32,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "serialized_lola_method_instance_deployment"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [serialized_lola_method_instance_deployment](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 70,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16f2dd3e8c790e96:1",
            "primaryLocationStartColumnFingerprint": "65"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 32,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "serialized_lola_method_instance_deployment"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ddd6a21b01863a0:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 218,
                  "startColumn": 21,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 71,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "250bb76327389e9a:1",
            "primaryLocationStartColumnFingerprint": "66"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 89,
                  "endColumn": 100
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4cc21535c02b3a77:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 34,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 25,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6872c63191896305:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 21,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 67,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "23ab6f8af50da567:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 81,
                  "endColumn": 92
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [HasLolaServiceDeployment](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 25,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "964a65889d647f60:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 21,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "HasLolaServiceDeployment"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 18,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "879895f38d855e99:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 6,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 53,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4da9328d6de609c:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 60,
                  "endColumn": 71
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 46,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "72f89b1eaaefd3c8:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 35,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetReturnValueBuffer](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 48,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "93bf8fe2764c84b4:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 44,
                  "endColumn": 77
                }
              },
              "message": {
                "text": "GetReturnValueBuffer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetInArgsBuffer](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 48,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "491026febf023916:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 44,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "GetInArgsBuffer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Insert](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 10,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9f4d8a8ebcc45466:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 6,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "Insert"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 11,
                  "endColumn": 19
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [last_used_iterator](1) where the type alias used is '[const_iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 98,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd04edecbb9f40cc:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 222,
                  "startColumn": 61,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "last_used_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "const_iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [container_end](1) where the type alias used is '[const_iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 98,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89900609fcceac4e:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 61,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "container_end"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "const_iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 69,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "92fd9b52fc4d05f5:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 73,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindServiceImpl](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 31,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "edd79e53ab130b46:1",
            "primaryLocationStartColumnFingerprint": "26"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 6,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "StartFindServiceImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 62,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "92e2cd4e330cc8f0:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 342,
                  "startColumn": 44,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 62,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5a6ac7471f064c98:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 324,
                  "startColumn": 44,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 31,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8df0da8fc8c77573:1",
            "primaryLocationStartColumnFingerprint": "26"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 6,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 48,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8df0da8fc8c77573:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 72,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 31,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "266736167769f448:1",
            "primaryLocationStartColumnFingerprint": "26"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 6,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 48,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "266736167769f448:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 72,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 31,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7952fce347b0c926:1",
            "primaryLocationStartColumnFingerprint": "26"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 48,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7952fce347b0c926:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 72,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [proxy_field_trace_points_](1) where the type alias used is '[TracePointMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 23,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0bec8b9a3c4261b:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 23,
                  "endColumn": 48
                }
              },
              "message": {
                "text": "proxy_field_trace_points_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "TracePointMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [proxy_event_trace_points_](1) where the type alias used is '[TracePointMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 23,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "edf6fa40b7efcf09:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 23,
                  "endColumn": 48
                }
              },
              "message": {
                "text": "proxy_event_trace_points_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "TracePointMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [skeleton_field_trace_points_](1) where the type alias used is '[TracePointMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 23,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "13688159c0e0cf9a:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 23,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "skeleton_field_trace_points_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "TracePointMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [skeleton_event_trace_points_](1) where the type alias used is '[TracePointMapType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 23,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fc39c84b9f97acb:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 23,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "skeleton_event_trace_points_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 11,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "TracePointMapType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [cb](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 83,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "80d79f50cfc1d7a3:1",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 59,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "cb"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [access_control](1) where the type alias used is '[AccessControl](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 84,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94bdf05a41452bbe:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 82,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "access_control"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 11,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "AccessControl"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [cb](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 28,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c1c3e432d4d6bfc:2",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 85,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "cb"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [cb](1) where the type alias used is '[InitializeCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 77,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c1c3e432d4d6bfc:1",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 76,
                  "endColumn": 78
                }
              },
              "message": {
                "text": "cb"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 11,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "InitializeCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [SubscribeEvent](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 32,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b5763da91e30177:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 14,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "SubscribeEvent"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [receiver](1) where the type alias used is '[Callback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 54,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e16563dc0bc22566:1",
            "primaryLocationStartColumnFingerprint": "49"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 69,
                  "endColumn": 77
                }
              },
              "message": {
                "text": "receiver"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 19
                }
              },
              "message": {
                "text": "Callback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [receiver](1) where the type alias used is '[Callback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 50,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a0515990bb41dff:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 72,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "receiver"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 19
                }
              },
              "message": {
                "text": "Callback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetReturnValueBuffer](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 44,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65e394fb9cf36f91:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 48,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "GetReturnValueBuffer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetInArgsBuffer](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 44,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "48bb7f5bff7cc126:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 48,
                  "endColumn": 63
                }
              },
              "message": {
                "text": "GetInArgsBuffer"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [on_service_found_callback](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 40,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ad2c5e2ab80d945f:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 40,
                  "endColumn": 65
                }
              },
              "message": {
                "text": "on_service_found_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watches_](1) where the type alias used is '[WatchesContainer](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 201,
                  "startColumn": 22,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eda537ff0fdac051:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 201,
                  "startColumn": 22,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "watches_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 11,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "WatchesContainer"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [search_requests_](1) where the type alias used is '[SearchRequestsContainer](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 29,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a1eb120988de35ea:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 29,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "search_requests_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "SearchRequestsContainer"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [find_service_handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 40,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8009580d8bfe86e9:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 40,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "find_service_handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [TransferNewSearchRequest](1) where the type alias used is '[value_type](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 42,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1118dd44dabf024:1",
            "primaryLocationStartColumnFingerprint": "37"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 289,
                  "startColumn": 6,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "TransferNewSearchRequest"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "value_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 152,
                  "startColumn": 70,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7773f7ca684e5e20:1",
            "primaryLocationStartColumnFingerprint": "65"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 864,
                  "startColumn": 90,
                  "endColumn": 104
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 70,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bee895e1a96295a5:1",
            "primaryLocationStartColumnFingerprint": "65"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 819,
                  "startColumn": 90,
                  "endColumn": 104
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 71,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c396101146970913:1",
            "primaryLocationStartColumnFingerprint": "66"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 784,
                  "startColumn": 91,
                  "endColumn": 105
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 73,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebca68731ba9cc15:1",
            "primaryLocationStartColumnFingerprint": "68"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 686,
                  "startColumn": 39,
                  "endColumn": 53
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [search_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 147,
                  "startColumn": 80,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "792e34c637149b4a:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 687,
                  "startColumn": 46,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "search_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 71,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44cae1492970b284:1",
            "primaryLocationStartColumnFingerprint": "66"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 672,
                  "startColumn": 39,
                  "endColumn": 53
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [search_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 78,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c850b4c62b03eb49:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 673,
                  "startColumn": 46,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "search_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [watch_iterator](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 55,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "485e622d243a8da7:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 625,
                  "startColumn": 75,
                  "endColumn": 89
                }
              },
              "message": {
                "text": "watch_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StoreWatch](1) where the type alias used is '[iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 32,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5baa4ef22a0d2a9b:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 599,
                  "startColumn": 6,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "StoreWatch"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 62,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "84f0131927fe4342:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 912,
                  "startColumn": 44,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 80,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8f4dfd7fe3f4032d:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 708,
                  "startColumn": 86,
                  "endColumn": 93
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Make](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 17,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26a1f87779217f9:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 6,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "Make"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 96,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2914c223031b8351:1",
            "primaryLocationStartColumnFingerprint": "91"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 617,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 96,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a3259e025d47c8c8:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 618,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 93,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8d25a2730fca2e3:1",
            "primaryLocationStartColumnFingerprint": "88"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 563,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 195,
                  "startColumn": 93,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "544520dbca95296f:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 564,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 49,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec2548dd9b5fec7:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 506,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 49,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "54b96a5d614858f9:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 507,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 178,
                  "startColumn": 102,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "939139f05d827819:1",
            "primaryLocationStartColumnFingerprint": "97"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 402,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 102,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "21ee8e26632f97b:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 403,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 49,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec254b4a14ff7da:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 49,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe0d732b7ab0834e:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 45,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetAllowedConsumers](1) where the type alias used is '[AllowedConsumerUids](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 238,
                  "startColumn": 49,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "18a4e6c616112744:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 792,
                  "startColumn": 45,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "GetAllowedConsumers"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/i_message_passing_service.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 11,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "AllowedConsumerUids"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterMethodHandlers](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eace46a96c286ef2:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 613,
                  "startColumn": 6,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "RegisterMethodHandlers"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 32,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1aa43864cda11da8:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 52,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 32,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a98815885f4ebe5:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 287,
                  "startColumn": 52,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 617,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec254a76bb76cd3:2",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 96,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 618,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "51b33e86d6a30cab:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 96,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 563,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec254a76bb76cd3:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 93,
                  "endColumn": 99
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 564,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4286bd8afeb4e27:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 195,
                  "startColumn": 93,
                  "endColumn": 99
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 506,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec2547267735ed9:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 49,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 507,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0f8836d1266e270:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 49,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 402,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec25472676560a9:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 178,
                  "startColumn": 102,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 403,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "561471480a41071c:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 102,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events](1) where the type alias used is '[SkeletonEventBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bec254b4a14ff7da:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 49,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "events"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonEventBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields](1) where the type alias used is '[SkeletonFieldBindings](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 45,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe0d732b7ab0834e:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 49,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "fields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 11,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "SkeletonFieldBindings"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [RegisterProxyElement](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 48,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f72d6c11d07f65cd:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 224,
                  "startColumn": 52,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "RegisterProxyElement"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 60,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6fd5b383cf61c44:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 64,
                  "endColumn": 89
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [dereference_slot_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 60,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b78684ec9f13a34a:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 64,
                  "endColumn": 89
                }
              },
              "message": {
                "text": "dereference_slot_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [unsubscribe_callback](1) where the type alias used is '[DereferenceSlotCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 60,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae69080046463099:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 64,
                  "endColumn": 84
                }
              },
              "message": {
                "text": "unsubscribe_callback"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 11,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "DereferenceSlotCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [HasLolaServiceDeployment](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 21,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a0dad30309fc1853:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 25,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "HasLolaServiceDeployment"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 21,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "56c12cc162bc706d:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 100,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "426c4098ca172eae:1",
            "primaryLocationStartColumnFingerprint": "99"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 82,
                  "endColumn": 93
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 85,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4893f626db5af567:1",
            "primaryLocationStartColumnFingerprint": "84"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_field_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 69,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 21,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "772567afba3287d1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 73,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1d68e24858b4b011:1",
            "primaryLocationStartColumnFingerprint": "72"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 63,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 21,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ad6d657f9616f5f0:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 100,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d39c0ae10c22b36a:1",
            "primaryLocationStartColumnFingerprint": "99"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 82,
                  "endColumn": 93
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 85,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8042f762f53818f3:1",
            "primaryLocationStartColumnFingerprint": "84"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 69,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 21,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5568733ed5f1f032:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 65,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef81a14c10b6c234:1",
            "primaryLocationStartColumnFingerprint": "64"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 59,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 218,
                  "startColumn": 21,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65f7f3f172c97133:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 89,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "684fbf52acf44835:1",
            "primaryLocationStartColumnFingerprint": "88"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 71,
                  "endColumn": 82
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 21,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "13f7fc34c3336d9b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 81,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6152dbf3cf3c94b:1",
            "primaryLocationStartColumnFingerprint": "80"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 67,
                  "endColumn": 78
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Serialize](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 21,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "17f89dfa284a329b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 25,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "Serialize"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [MakeDataTypeSizeInfo](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/data_type_meta_info.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 48,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebb6072c6a3531f3:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/data_type_meta_info.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 41,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "MakeDataTypeSizeInfo"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [json_object](1) where the type alias used is '[Object](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 73,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "842aaa234b0c4e4a:1",
            "primaryLocationStartColumnFingerprint": "72"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 63,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "json_object"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/json/internal/model/any.h"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 13
                }
              },
              "message": {
                "text": "Object"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [methods_](1) where the type alias used is '[ProxyMethods](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 169,
                  "startColumn": 18,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e510d01d8ad574a9:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 169,
                  "startColumn": 18,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "methods_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 11,
                  "endColumn": 23
                }
              },
              "message": {
                "text": "ProxyMethods"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields_](1) where the type alias used is '[ProxyFields](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 17,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f942fecedd4a789:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 17,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "fields_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 11,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "ProxyFields"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events_](1) where the type alias used is '[ProxyEvents](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 17,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33cde6f9473a5564:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 17,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "events_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 11,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "ProxyEvents"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetHandle](1) where the type alias used is '[HandleType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 23,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e966fc6e615b603c:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 19,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "GetHandle"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 11,
                  "endColumn": 21
                }
              },
              "message": {
                "text": "HandleType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 38,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91ffc6066d21ade0:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 6,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 86,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91ffc6066d21ade0:1",
            "primaryLocationStartColumnFingerprint": "81"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 65,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 38,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91ffc6066bfa6fbc:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 6,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[FindServiceHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 86,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91ffc6066bfa6fbc:1",
            "primaryLocationStartColumnFingerprint": "81"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 65,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "FindServiceHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 55,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a9041bc1e750e68:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 55,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1dd35dc175f3e87:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [methods_](1) where the type alias used is '[SkeletonMethods](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 21,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c0fee986b792a40:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 21,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "methods_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "SkeletonMethods"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [fields_](1) where the type alias used is '[SkeletonFields](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 20,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2943bc4470475456:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 20,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "fields_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "SkeletonFields"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [events_](1) where the type alias used is '[SkeletonEvents](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 20,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a2c57415ee9430:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 20,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "events_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "SkeletonEvents"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetMethods](1) where the type alias used is '[SkeletonMethods](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 56,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dc20482596017428:1",
            "primaryLocationStartColumnFingerprint": "51"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 329,
                  "startColumn": 38,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "GetMethods"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 11,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "SkeletonMethods"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetFields](1) where the type alias used is '[SkeletonFields](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 55,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "32da60b07527e51f:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 324,
                  "startColumn": 37,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "GetFields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "SkeletonFields"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetEvents](1) where the type alias used is '[SkeletonEvents](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 55,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bedd8774f1c2f063:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 319,
                  "startColumn": 37,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "GetEvents"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "SkeletonEvents"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OfferServiceFields](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 66,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b765adbde785d4ff:1",
            "primaryLocationStartColumnFingerprint": "61"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 48,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "OfferServiceFields"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OfferServiceEvents](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 66,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fad76de57029f54e:1",
            "primaryLocationStartColumnFingerprint": "61"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 48,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "OfferServiceEvents"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [OfferService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 32,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a93c6e6762ba64a9:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "OfferService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 25,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fd8893f56953caac:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 50,
                  "endColumn": 56
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 25,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d8158cdd74f4ab37:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 50,
                  "endColumn": 56
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [MakeDataTypeSizeInfo](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/data_type_meta_info.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 41,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5ecf6e48006517e:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/data_type_meta_info.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 48,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "MakeDataTypeSizeInfo"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [handler](1) where the type alias used is '[SubscriptionStateChangeHandler](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 83,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8ac7aa8c7ddded2e:1",
            "primaryLocationStartColumnFingerprint": "78"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 95,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "handler"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/subscription_state_change_handler.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "SubscriptionStateChangeHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [proxy_event_binding](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 96,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "647d2b1b89e1a99b:1",
            "primaryLocationStartColumnFingerprint": "91"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 79,
                  "endColumn": 98
                }
              },
              "message": {
                "text": "proxy_event_binding"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetRegisteredShmObject](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 48,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d898de87b61a33a4:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 452,
                  "startColumn": 44,
                  "endColumn": 82
                }
              },
              "message": {
                "text": "GetRegisteredShmObject"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [trace_point_type](1) where the type alias used is '[TracePointType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 45,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3fd7520d59c7a9eb:1",
            "primaryLocationStartColumnFingerprint": "21"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 607,
                  "startColumn": 57,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "trace_point_type"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/i_tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "TracePointType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [trace_point_type](1) where the type alias used is '[TracePointType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 45,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f52ac7bc79c882f1:1",
            "primaryLocationStartColumnFingerprint": "21"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 513,
                  "startColumn": 57,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "trace_point_type"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/i_tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 11,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "TracePointType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [trace_point](1) where the type alias used is '[TracePointType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 64,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c8dc55e10cf1301:1",
            "primaryLocationStartColumnFingerprint": "37"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 64,
                  "endColumn": 75
                }
              },
              "message": {
                "text": "trace_point"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "TracePointType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [trace_point](1) where the type alias used is '[TracePointType](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 61,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58ff280acd9a4d14:1",
            "primaryLocationStartColumnFingerprint": "37"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 61,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "trace_point"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "TracePointType"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 86,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f670c709ef8c7c64:1",
            "primaryLocationStartColumnFingerprint": "85"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 52,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [args](1) where the type alias used is '[MethodInArgPtr](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 186,
                  "startColumn": 33,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "22818613ed00e7d4:1",
            "primaryLocationStartColumnFingerprint": "28"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 91,
                  "endColumn": 95
                }
              },
              "message": {
                "text": "args"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "MethodInArgPtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 86,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f670c709f9981f8f:1",
            "primaryLocationStartColumnFingerprint": "85"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 52,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 48,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f670c709ef8c7c64:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 52,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 48,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f670c709f9981f8f:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 52,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [operator()](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 52,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a97ea4820f0559a0:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 86,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 185,
                  "startColumn": 48,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [args](1) where the type alias used is '[MethodInArgPtr](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 91,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a97ea4820f0559a0:1",
            "primaryLocationStartColumnFingerprint": "86"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 186,
                  "startColumn": 33,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "args"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "MethodInArgPtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator()](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [operator()](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 52,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a471c17bfdff3f48:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 86,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "operator()"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 48,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 101,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63655139dffdd9d5:1",
            "primaryLocationStartColumnFingerprint": "100"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 101,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 45,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63655139dffdd9d5:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 101,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 49,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8476089ab8f84663:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 101,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 56,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "93e2b382acaea1ca:1",
            "primaryLocationStartColumnFingerprint": "51"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 56,
                  "endColumn": 62
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 105,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a83ee646ec8c915:1",
            "primaryLocationStartColumnFingerprint": "104"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a83ee646ec8c915:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [Create](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 60,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f2c8473d0b0d921:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 105,
                  "endColumn": 106
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateEventBinding](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 43,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c96cc5ec1556715e:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 60,
                  "endColumn": 78
                }
              },
              "message": {
                "text": "CreateEventBinding"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateEventBinding](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c96cc5ec1556715e:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 60,
                  "endColumn": 78
                }
              },
              "message": {
                "text": "CreateEventBinding"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateEventBinding](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [CreateEventBinding](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 60,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "df734aa2dc95d22f:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 43,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "CreateEventBinding"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "CreateEventBinding"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetLatestSample](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 64,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f2ed8a890e35d0c9:1",
            "primaryLocationStartColumnFingerprint": "63"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 41,
                  "endColumn": 56
                }
              },
              "message": {
                "text": "GetLatestSample"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Allocate](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 73,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb1d16605cf8cfec:1",
            "primaryLocationStartColumnFingerprint": "72"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 50,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "Allocate"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetLatestSample](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 37,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f2ed8a890e35d0c9:1",
            "primaryLocationStartColumnFingerprint": "36"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 41,
                  "endColumn": 56
                }
              },
              "message": {
                "text": "GetLatestSample"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Allocate](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 46,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb1d16605cf8cfec:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 50,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "Allocate"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetLatestSample](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [GetLatestSample](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 41,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58ddcd71d6af8973:1",
            "primaryLocationStartColumnFingerprint": "36"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 64,
                  "endColumn": 65
                }
              },
              "message": {
                "text": "GetLatestSample"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 37,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "GetLatestSample"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Allocate](1) where the type alias used is '[Result](2)'.\nDeclaration entry has a different type alias than [Allocate](3) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 50,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6dc08bee74d760db:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 73,
                  "endColumn": 74
                }
              },
              "message": {
                "text": "Allocate"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 46,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "Allocate"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [service_element_map](1) where the type alias used is '[map_type](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_map_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 37,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e31a5d57fa931f1:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_map_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 37,
                  "endColumn": 56
                }
              },
              "message": {
                "text": "service_element_map"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_map_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 11,
                  "endColumn": 19
                }
              },
              "message": {
                "text": "map_type"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [operator<<](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 30,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c098f902f095c12:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "operator<<"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [log_stream](1) where the type alias used is '[LogStream](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c098f902f095c12:1",
            "primaryLocationStartColumnFingerprint": "69"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 70,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "log_stream"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/mw/log/logging.h"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "LogStream"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [last_used_iterator](1) where the type alias used is '[const_iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 222,
                  "startColumn": 61,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd04edecbb9f40cc:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 98,
                  "endColumn": 116
                }
              },
              "message": {
                "text": "last_used_iterator"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "const_iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [container_end](1) where the type alias used is '[const_iterator](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 61,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bf494ff3d3d73c0:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 98,
                  "endColumn": 111
                }
              },
              "message": {
                "text": "container_end"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "const_iterator"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindServiceImpl](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 6,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "62a5e14353803558:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 31,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "StartFindServiceImpl"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 342,
                  "startColumn": 44,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b8da1b5f7728348a:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 62,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [FindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 324,
                  "startColumn": 44,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65499eb98cbaed99:1",
            "primaryLocationStartColumnFingerprint": "43"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 62,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "FindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 6,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a18cd59d36f1e0f5:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 31,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 6,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12b3ddd2aaf81003:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 31,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [StartFindService](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34e76ca7bb907a68:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 31,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "StartFindService"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetEvents](1) where the type alias used is '[EventMapView](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 32,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9cc94cb0e61c7d:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 45,
                  "endColumn": 71
                }
              },
              "message": {
                "text": "GetEvents"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 11,
                  "endColumn": 23
                }
              },
              "message": {
                "text": "EventMapView"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 50,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2ecf946fa4f6126e:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 25,
                  "endColumn": 48
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 50,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52502679e9693173:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 25,
                  "endColumn": 48
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [args](1) where the type alias used is '[MethodInArgPtr](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 92,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "85532facf6770c08:1",
            "primaryLocationStartColumnFingerprint": "91"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 64,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "args"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "MethodInArgPtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [args](1) where the type alias used is '[MethodInArgPtr](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 64,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2583cab0e0381d2:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 92,
                  "endColumn": 96
                }
              },
              "message": {
                "text": "args"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "MethodInArgPtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [model_name](1) where the type alias used is '[InstanceSpecifier](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 103,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4645d680bc49f13f:1",
            "primaryLocationStartColumnFingerprint": "102"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 93,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "model_name"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/types.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 7,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "InstanceSpecifier"
              }
            }
          ]
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 329,
                  "startColumn": 67,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd25761a34c92f69:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 56,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1c46374c409c523:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 55,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1c46374c409c523:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4fbb03eadcfd566:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 62,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4fbb03eadcfd566:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 79,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1350cfe9bb9ca0c:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 78,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1350cfe9bb9ca0c:1",
            "primaryLocationStartColumnFingerprint": "73"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'uint64_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1d55f58a24574d7d:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'uint8_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 54,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8daebf27a51e6bd:1",
            "primaryLocationStartColumnFingerprint": "45"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'uint8_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 56,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "75944377e6023f9a:1",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 322,
                  "startColumn": 37,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fd09da60cdd9ab34:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 16,
                  "endLine": 1252,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 16,
                  "endLine": 1233,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 16,
                  "endLine": 48,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 20,
                  "endLine": 98,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 16,
                  "endLine": 52,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 20,
                  "endLine": 83,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 937,
                  "startColumn": 16,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "979ceb59f53a09e:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 21,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d0e8376ab2fec302:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 33,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "994bc468a2d4794f:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 10,
                  "endLine": 33,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "991b659ea2313e7c:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 31,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86a9289f8a9a2677:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 26,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "db0afbdc6a470140:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'underlying_type_readmask'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 66,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6d8aff8580ac9664:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 834,
                  "startColumn": 34,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6f4d33035b50321:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 841,
                  "startColumn": 34,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "456e5f9080bc7047:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 46,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfaf1160426d9ca1:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 46,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "723b69e3a746a3db:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 562,
                  "startColumn": 16,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "839382afd9fdc2f:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 920,
                  "startColumn": 96,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6ad8dbf27caf237b:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 268,
                  "startColumn": 27,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc599abaac961271:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 24,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4954fead976a4b38:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 20,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3e254d5ce8e4d56:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 162,
                  "startColumn": 12,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "edccf4184bd988e4:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 10,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "427a53d3aeb99278:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 247,
                  "startColumn": 39,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9bb72a32fdc789d:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 248,
                  "startColumn": 36,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b2ad7880cb60dd6:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 249,
                  "startColumn": 38,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e51563b7520adc1b:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 54,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "84e0abfa8c727362:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 255,
                  "startColumn": 57,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "569cc4690ee421e1:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 262,
                  "startColumn": 57,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44838411a8a61f8d:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 59,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c55889bac83325:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 78,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f60062f1b82edfe:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 78,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b8bc7bd27184c0ac:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 339,
                  "startColumn": 78,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "53319dadf61790c3:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 304,
                  "startColumn": 78,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9e568954c3788d5:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'const type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 16,
                  "endLine": 417,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdb855b5456683a2:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 78,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cfbd1db5721904a:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 234,
                  "startColumn": 78,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41d33b9fc24338bb:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 78,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83c964cc9ba2f1bb:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 9,
                  "endLine": 77,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c70effbe5053867c:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 9,
                  "endLine": 77,
                  "endColumn": 10
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 5,
                  "endLine": 183,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f6444055312e5432:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 5,
                  "endLine": 183,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 508,
                  "startColumn": 5,
                  "endLine": 554,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "10fb8abe983f3a52:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 508,
                  "startColumn": 5,
                  "endLine": 554,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 5,
                  "endLine": 47,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "890fd1f865bdf22f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 5,
                  "endLine": 47,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 257,
                  "startColumn": 10,
                  "endLine": 268,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fb030a77f6654e0d:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 257,
                  "startColumn": 10,
                  "endLine": 268,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 225,
                  "startColumn": 14,
                  "endLine": 238,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3dca7ba2a2ebf537:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 225,
                  "startColumn": 14,
                  "endLine": 238,
                  "endColumn": 10
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 13,
          "rule": {
            "id": "cpp/misra/if-else-if-end-condition",
            "index": 69
          },
          "message": {
            "text": "The [`if...else`](1) construct does not terminate with else statement."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 5,
                  "endLine": 110,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f6e161bd9586ee39:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 5,
                  "endLine": 110,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "`if...else`"
              }
            }
          ]
        },
        {
          "ruleIndex": 14,
          "rule": {
            "id": "cpp/misra/exception-unfriendly-function-must-be-noexcept",
            "index": 50
          },
          "message": {
            "text": "Function '~FlagFile' must be noexcept because it is a destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 166,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d357ca0fcc352c3e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 14,
          "rule": {
            "id": "cpp/misra/exception-unfriendly-function-must-be-noexcept",
            "index": 50
          },
          "message": {
            "text": "Function '~TypeErasedSamplePtrsGuard' must be noexcept because it is a destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/type_erased_sample_ptrs_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "590e6022b702f18d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'HandlerPointerT' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 15,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c41185f462550648:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'HandlerPointerT' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 11,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1a6586421af72c47:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'UniqueMethodIdentifier' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 15,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "870306c97309ad41:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'ProxyInstanceIdentifier' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 15,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd2d5577d7fdc1ec:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'LogStreamFactoryPtr' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 15,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6cf19c7b3b01e397:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'T' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 27,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f4cc0bb256e840:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'NewDeleteDelegateMemoryResource' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 509,
                  "startColumn": 11,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e0e9442ec1072923:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'ServiceInstanceElement' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 11,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "429e108350fd34b3:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 16,
          "rule": {
            "id": "cpp/misra/bit-field-shall-have-an-appropriate-type",
            "index": 15
          },
          "message": {
            "text": "Bit-field 'transaction_end_' is declared on type 'uint8_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 18,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c0c9956d9b607170:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 16,
          "rule": {
            "id": "cpp/misra/bit-field-shall-have-an-appropriate-type",
            "index": 15
          },
          "message": {
            "text": "Bit-field 'transaction_begin_' is declared on type 'uint8_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 18,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a137aa54646904ee:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'LogStream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 750,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50922821ca969567:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'LogHex64'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 750,
                  "startColumn": 73,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50922821ca969567:1",
            "primaryLocationStartColumnFingerprint": "56"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 750,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[2\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 750,
                  "startColumn": 115,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50922821ca969567:1",
            "primaryLocationStartColumnFingerprint": "98"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 750,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'LogHex64'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 751,
                  "startColumn": 20,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "245404b63f50536a:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 751,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[29\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 751,
                  "startColumn": 64,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "245404b63f50536a:1",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 751,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 751,
                  "endColumn": 121
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[37\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 752,
                  "startColumn": 20,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52375d8a31939030:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 13,
                  "endLine": 752,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c3615c94b73d2cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'ostream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 21,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "939420bd6496e68f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'auto &&'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 31,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "939420bd6496e68f:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|=' requires unsigned numeric operands, but the left operand has type 'int16_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 9,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e42900f5318c9ac:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|=' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 19,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e42900f5318c9ac:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|=' requires unsigned numeric operands, but the left operand has type 'int16_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 9,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b5d35bc3bd6f0513:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|=' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 19,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b5d35bc3bd6f0513:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'LogStream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 25,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f5644b409b76b30e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'auto &&'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 35,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f5644b409b76b30e:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'stringstream'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 5,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd281a03f492133d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'Prefix'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 12,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd281a03f492133d:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type '__ostream_type &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 82,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "495ee434791f7592:1",
            "primaryLocationStartColumnFingerprint": "77"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const ServiceIdType'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 97,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "495ee434791f7592:1",
            "primaryLocationStartColumnFingerprint": "92"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'LogStream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 46,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebc9496480d1fe31:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 106,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebc9496480d1fe31:1",
            "primaryLocationStartColumnFingerprint": "93"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 13,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebc9496480d1fe31:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[22\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 49,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60ee3a56631567b1:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 13,
                  "endLine": 121,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebc9496480d1fe31:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const Error &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 110,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60ee3a56631567b1:1",
            "primaryLocationStartColumnFingerprint": "64"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'LogStream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 46,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae6737e878ded0c0:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 114,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae6737e878ded0c0:1",
            "primaryLocationStartColumnFingerprint": "101"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 13,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae6737e878ded0c0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[22\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 49,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c742456a3120d27b:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 13,
                  "endLine": 129,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae6737e878ded0c0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const Error &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 111,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c742456a3120d27b:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'LogStream &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 46,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d10e76c55b1a1ee4:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 114,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d10e76c55b1a1ee4:1",
            "primaryLocationStartColumnFingerprint": "101"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 13,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d10e76c55b1a1ee4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const char\\[22\\]'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 49,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4f5958bcf1ac5599:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 13,
                  "endLine": 137,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d10e76c55b1a1ee4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'const Error &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 111,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4f5958bcf1ac5599:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address which arrived via a [parameter](1) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/timed_command_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 5,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "913c09c41ac8c1b8:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/timed_command_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 20,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "parameter"
              }
            }
          ]
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address which arrived via a [parameter](1) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 228,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "741d0b8adcc9c7ac:2",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 228,
                  "startColumn": 23,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "parameter"
              }
            }
          ]
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address ([source](1)) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 230,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f256a22f8741baef:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 230,
                  "startColumn": 23,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "source"
              }
            }
          ]
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address ([source](1)) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "741d0b8adcc9c7ac:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 23,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "source"
              }
            }
          ]
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address ([source](1)) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "602fbb8b2324561a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 23,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "source"
              }
            }
          ]
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ISharedMemoryFactory' has a deprecated implicit copy constructor.\nClass 'ISharedMemoryFactory' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8c681712f9e4ba54:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'TypedMemory' has a deprecated implicit copy constructor.\nClass 'TypedMemory' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "82a6cf0df0f0e16f:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ISharedMemoryResource' has a deprecated implicit copy constructor.\nClass 'ISharedMemoryResource' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/i_shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eeda927cdb0a02f8:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ManagedMemoryResource' has a deprecated implicit copy constructor.\nClass 'ManagedMemoryResource' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 7,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e9e06c9b3e46dfb:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'PolymorphicOffsetPtrAllocator<T>' has a deprecated implicit copy constructor.\nClass 'PolymorphicOffsetPtrAllocator<T>' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b44a97772b0ced7:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'UnixDomainClientFactory' has a deprecated implicit copy constructor.\nClass 'UnixDomainClientFactory' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_client_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f27fa5001d9556a7:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'UnixDomainServerFactory' has a deprecated implicit copy constructor.\nClass 'UnixDomainServerFactory' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ca9ac0c6c46b438f:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'UnixDomainServer' has a deprecated implicit copy constructor.\nClass 'UnixDomainServer' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 7,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4eec66cf217c5fe0:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ServerConnection' has a deprecated implicit copy constructor.\nClass 'ServerConnection' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 11,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f34597d01f4c8993:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'EventSlotStatus' has a deprecated implicit copy constructor.\nClass 'EventSlotStatus' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_slot_status.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b64088f6a24ff20:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IPartialRestartPathBuilder' has a deprecated implicit copy constructor.\nClass 'IPartialRestartPathBuilder' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/i_partial_restart_path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 7,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3fbc5aa44ac7ebd:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ITracingRuntime' has a deprecated implicit copy constructor.\nClass 'ITracingRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/i_tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "abc2f64d0b69ec76:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'FindServiceHandle' has a deprecated implicit copy constructor.\nClass 'FindServiceHandle' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 7,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb76992d2d9f358d:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ServiceInstanceDeployment' has a deprecated implicit copy constructor.\nClass 'ServiceInstanceDeployment' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2ebb747bf1ff67a:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ServiceIdentifierType' has a deprecated implicit copy constructor.\nClass 'ServiceIdentifierType' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 7,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb3aba5471f7e16:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IOfferedState' has a deprecated implicit copy constructor.\nClass 'IOfferedState' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 7,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1915c6480dc299b6:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IBindingRuntime' has a deprecated implicit copy constructor.\nClass 'IBindingRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/i_binding_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8cff3b6347257d:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'HandleType' has a deprecated implicit copy constructor.\nClass 'HandleType' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 7,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34e752fcc8b60401:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ServiceVersionType' has a deprecated implicit copy constructor.\nClass 'ServiceVersionType' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3510c117ae06aa45:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'InstanceIdentifier' has a deprecated implicit copy constructor.\nClass 'InstanceIdentifier' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdf55d15fdfcd832:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IServiceDiscovery' has a deprecated implicit copy constructor.\nClass 'IServiceDiscovery' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/i_service_discovery.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9b2109c19888b8f3:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IServiceDiscoveryClient' has a deprecated implicit copy constructor.\nClass 'IServiceDiscoveryClient' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/i_service_discovery_client.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "535de03da7c0e6cc:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IBindingTracingRuntime' has a deprecated implicit copy constructor.\nClass 'IBindingTracingRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/i_binding_tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 7,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52935c1389690d26:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IRuntime' has a deprecated implicit copy constructor.\nClass 'IRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/i_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebf3691b9dae74b6:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ProxyMethodBinding' has a deprecated implicit copy constructor.\nClass 'ProxyMethodBinding' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee84d596a9f9bd96:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ITracingFilterConfig' has a deprecated implicit copy constructor.\nClass 'ITracingFilterConfig' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/i_tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 7,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d5817c1875286862:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IRuntime' has a deprecated implicit copy constructor.\nClass 'IRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/i_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dd6f3519351ccccc:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IShmPathBuilder' has a deprecated implicit copy constructor.\nClass 'IShmPathBuilder' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/i_shm_path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8c32e155f5bc41b:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IConfigurationParsingStrategy' has a deprecated implicit copy constructor.\nClass 'IConfigurationParsingStrategy' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b20fd2afa6e15d1:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ISkeletonBase' has a deprecated implicit copy constructor.\nClass 'ISkeletonBase' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/mocking/i_skeleton_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7343a9ae768be498:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'GenericSkeletonEvent' has a deprecated implicit copy constructor.\nClass 'GenericSkeletonEvent' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 7,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6d997b00f6031d33:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IGenericSkeletonEventBindingFactory' has a deprecated implicit copy constructor.\nClass 'IGenericSkeletonEventBindingFactory' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/i_generic_skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 7,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc3697fc32f7a028:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IProxyEventBase' has a deprecated implicit copy constructor.\nClass 'IProxyEventBase' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/mocking/i_proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a831880c357f8b7a:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IProxyEvent<SampleType>' has a deprecated implicit copy constructor.\nClass 'IProxyEvent<SampleType>' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/mocking/i_proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 7,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a11a7047940f16b5:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ISkeletonEvent<SampleType>' has a deprecated implicit copy constructor.\nClass 'ISkeletonEvent<SampleType>' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/mocking/i_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "660c4dc67b121925:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'ISkeletonField<SampleType>' has a deprecated implicit copy constructor.\nClass 'ISkeletonField<SampleType>' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/mocking/i_skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f23adc53250ae9a7:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 19,
          "rule": {
            "id": "cpp/misra/implicit-declaration-of-copy-constructor",
            "index": 71
          },
          "message": {
            "text": "Class 'IRuntime' has a deprecated implicit copy constructor.\nClass 'IRuntime' has a deprecated implicit copy assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/mocking/i_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "32b11356a94595f5:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'g_shared_memory_error_domain' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_error.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 21,
                  "startColumn": 35,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bb46ea07a2d0362:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kConnectIpcWarningDelay' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 37,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a2e45302adbfc597:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kStateRetryDelay' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 37,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3cdcc6f9e9601d8c:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'g_methodErrorDomain' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_error.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 17,
                  "startColumn": 57,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "39bfe6b20c1b2eb7:1",
            "primaryLocationStartColumnFingerprint": "56"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kDummyElementNameForShmRegisterCallback' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 39,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2dc6bd1fb55aa299:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'g_comErrorDomain' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/com_error.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 48,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "167d1e42b13b2384:1",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'g_configurationErrorDomain' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_error.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 17,
                  "startColumn": 58,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a55c917bdcd3014b:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kQueueSizeKey' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 16,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7bd5bd21d3a49a5:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kMethodEnabledKey' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 16,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3c32eb44dcd94174:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'type_erased_return_type_' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 62,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdc312e5b838cf04:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'type_erased_in_args_' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 62,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7eed8e94d63c3bd8:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'g_trace_configuration_error_domain' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/trace_error.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 17,
                  "startColumn": 59,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3a427501c79ebfc:1",
            "primaryLocationStartColumnFingerprint": "58"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kConfigurationPathCommandLineKey' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 16,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9543d438e8a6c89:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 20,
          "rule": {
            "id": "cpp/misra/redeclaration-of-static-constexpr-data-member",
            "index": 162
          },
          "message": {
            "text": "Static constexpr data member 'kDeprecatedConfigurationPathCommandLineKey' is redeclared, which is a deprecated language feature."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 16,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3044dc7a4b6654da:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'pipe_event' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 279,
                  "startColumn": 15,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e1333d543278c2a:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'code' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 18,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34167b137bf56817:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 22,
          "rule": {
            "id": "cpp/misra/dynamic-memory-managed-manually",
            "index": 45
          },
          "message": {
            "text": "Banned call to `free`."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 9,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9d82c5c43c2ed80:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 22,
          "rule": {
            "id": "cpp/misra/dynamic-memory-managed-manually",
            "index": 45
          },
          "message": {
            "text": "Banned call to `malloc`."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 27,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1aabbd659e52a37:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 23,
          "rule": {
            "id": "cpp/misra/no-c-style-or-functional-casts",
            "index": 109
          },
          "message": {
            "text": "Use of explicit c-style cast to size_t."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 100,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ad01f783c699d9fe:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 23,
          "rule": {
            "id": "cpp/misra/no-c-style-or-functional-casts",
            "index": 109
          },
          "message": {
            "text": "Use of explicit c-style cast to size_t."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 100,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "38e52d60fc34f30e:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 13,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f11e29076d8664c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 165,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b26b19ca86dc9ae8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/com_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 17,
                  "endLine": 217,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 13,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b2ec7f2f5f31017e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 17,
                  "endLine": 90,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 202,
                  "startColumn": 9,
                  "endLine": 203,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e833094eb2b0bdfe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4c88e1b5338fcd8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ce834fc72b2a178:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 13,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "559e21c1ba7e65d6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 514,
                  "startColumn": 13,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3706a7d87fdf6828:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 368,
                  "startColumn": 13,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a059bb65130eb805:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb64c98589a7279:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 13,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "309c4a8e7d1da03d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true.\nThe path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5896a630276bc30f:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 110,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2965506bfc33d748:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5b494d5a515875f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5896a63b5607efad:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5896a630276bc30f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true.\nThe path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 5,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aba918d1d806c6de:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe9af2464056ea53:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 26,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33b420a9c46728ca:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 17,
                  "endLine": 50,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae48b152c8462a9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 191,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb62ae5def86057:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d794ebb42b780feb:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 17,
                  "endLine": 54,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2dae2c8450613609:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 9,
                  "endLine": 59,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a3489cf138dac30a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 9,
                  "endLine": 69,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a86a412c3a632410:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8651e25f1e07e934:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 24,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3fba72c7fb080dd1:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 406,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:7",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 368,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:6",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 332,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:5",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 297,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:4",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 262,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 227,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 192,
                  "startColumn": 13,
                  "endColumn": 110
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "488ee135ce2aef1c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 190,
                  "startColumn": 13,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bda8781f58ca765:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc7686d0207909d4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 71,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3fba72c7fb080dd1:1",
            "primaryLocationStartColumnFingerprint": "66"
          }
        },
        {
          "ruleIndex": 25,
          "rule": {
            "id": "cpp/misra/variable-declared-array-type",
            "index": 210
          },
          "message": {
            "text": "Variable argv has an array type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 81,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ec17c43ae01d3628:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 25,
          "rule": {
            "id": "cpp/misra/variable-declared-array-type",
            "index": 210
          },
          "message": {
            "text": "Variable argv has an array type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 61,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "35e1ffa885fd79a:1",
            "primaryLocationStartColumnFingerprint": "60"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Variable 'existing_element' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Variable 'existing_element' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Variable '_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Variable 'sample_alignment' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 594,
                  "startColumn": 46,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "397af33af4335277:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'owns_resource_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 14,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c6d4fb655285489:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'index_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 22,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95708ce1f6d0bee1:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'gid' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/server_types.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 11,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83f9976456a73088:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'owner' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 21,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c477a3d582375b18:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'max_queued_notifies' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 23,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1482609e648daf19:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'pre_alloc_connections' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 23,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f802492a757127cb:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'max_queued_sends' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 23,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ba72304cc0a6c6f1:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'ignore_qm_control_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 10,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34185798a9cc0f21:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'asil_b_control_local_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 62,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "380bb6da1af6a95d:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'slot_value' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 37,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "162b112f6a537427:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'slot_index' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 23,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2188ce0819d4465c:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'qm_misbehaved' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 14,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac076161fa9832df:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'enforce_max_samples_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 16,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f94d1702bc8fea4:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'max_subscribers_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 31,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7174d3677999da0f:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'max_subscribable_slots_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 26,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c6155f0ce3b734e9:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'event_control_asil_b' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 23,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fb7e47940ae6a2ca:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'event_control_qm' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 23,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f529619f25249a1a:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'type_erased_event_data_storage_ptr' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 15,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97a7640c515621d:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'field_getter_enabled_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 178,
                  "startColumn": 10,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3deda5d250bf2be5:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'qm_disconnect_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 177,
                  "startColumn": 10,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9e7d8fcf4d836d52:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'current_timestamp_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 37,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f54e80c966bfaf6b:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'parent_' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 163,
                  "startColumn": 15,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "566ec23b29afae27:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Member variable 'trace_point_data_id' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 54,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ce53f9a82fb3d94e:1",
            "primaryLocationStartColumnFingerprint": "49"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "addr_ is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 23,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a990a8ef764dc42c:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "ProxyInstanceIdentifier::application_id is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 31,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95885cf589d28cf0:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "ProxyInstanceIdentifier::proxy_instance_counter is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 31,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bce0963c314a483:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "SkeletonInstanceIdentifier::service_id is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 31,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60551b85ccfef73d:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "SkeletonInstanceIdentifier::instance_id is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 31,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d91e8df91056cf86:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 53,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1b877879eee3b39:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 14,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "900186d35c25528d:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'UnixDomainEngine' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 5,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4af39fdc91c683e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'UnixDomainEngine' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebd54ae1da313844:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 75,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "414db9a12406d546:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ConsumerEventDataControlLocalView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fab6aef47f4d0c8b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ConsumerEventDataControlLocalView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fab6aef47f4d0c8b:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 246,
                  "startColumn": 5,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2f9bad67b7a03e5a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'OffsetPtr' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 419,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae0452635e5e26f5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'OffsetPtr' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 398,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "22b89f488c0699c6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'OffsetPtr' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 398,
                  "startColumn": 25,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "22b89f488c0699c6:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'PolymorphicOffsetPtrAllocator' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 5,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "48bcf324cf3c330c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'PolymorphicOffsetPtrAllocator' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b08657f8a2dadd6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'PolymorphicOffsetPtrAllocator' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b08657f8a2dadd6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'TransactionLogLocalView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2f866c02fbd3b9bf:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ProviderEventDataControlLocalView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f4d9cdfe73fd8d3d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ProviderEventDataControlLocalView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f4d9cdfe73fd8d3d:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 5,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "340b6977755ff9ec:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "340b6977755ff9ec:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1174,
                  "startColumn": 32,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6717c41ad344d593:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 243,
                  "startColumn": 31,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e65b566216bc61d:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 247,
                  "startColumn": 34,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b57775624d0af69:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 14,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "24653522d1e76630:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'RuntimeConfiguration' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "64628dbcb107e3c1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'SamplePtr' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 15,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0715c9a91e30720:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'OffsetPtr' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 5,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3875ba486fd0d159:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 569,
                  "startColumn": 78,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95655c943c6490a:1",
            "primaryLocationStartColumnFingerprint": "73"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 345,
                  "startColumn": 45,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb47a1286d9ad9da:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 221,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3f88410f1a4b6561:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "efbf13967453f6da:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "76acc49b32adbcde:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cfcf1275c5a81b97:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3bd2c6a723c0f441:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d35e1ef8d0acc702:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 152,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6dceb7154df5c478:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34fff0990813efc9:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c193a29306a9a91:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e52ab4d0df64b736:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4dacedeb79f6d82:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_type_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1edeadcd89ac029:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 38,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a0b26a739cd4f530:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ServiceElementMapView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_map_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 5,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e31a5d57fa931f1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d1e94e6ed51a5420:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Constructor 'ServiceElementMapView' that is callable with a single argument shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_element_map_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e31a5d57fa931f1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 241,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "df65e2c13ce53f6b:2",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 83,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e83575afd0065f2f:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fdf27b9fed83bb39:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2ef4ab21c562c90:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f580ca5797aed53b:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "baa5c619e4da2102:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 29,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83c174a12af0c1c0:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 161,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f20197a78f5c44eb:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f82cdaa563371f1a:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 89,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "be1e80439889cc44:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 89,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a24251f5462b51e:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 92,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6ca67d951b2634f9:1",
            "primaryLocationStartColumnFingerprint": "87"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 57,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1852347867a4e34a:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 153,
                  "startColumn": 85,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9dff459e17ab603:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 212,
                  "startColumn": 29,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9618e811dbaec894:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 232,
                  "startColumn": 19,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a445de709eff3bea:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 253,
                  "startColumn": 51,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9bd0155b6b26399:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 267,
                  "startColumn": 51,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dad15e8e7db2a55:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "758180220575435e:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5079435831d570aa:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "376420319f9eb824:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 162,
                  "startColumn": 11,
                  "endColumn": 12
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6e40a105bd72658:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 29,
          "rule": {
            "id": "cpp/misra/inherited-overridable-member-function",
            "index": 80
          },
          "message": {
            "text": "Declaration for member 'StartListening' hides overridable inherited member function [StartListening](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 50,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdda6df8885fecc8:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 58,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "StartListening"
              }
            }
          ]
        },
        {
          "ruleIndex": 29,
          "rule": {
            "id": "cpp/misra/inherited-overridable-member-function",
            "index": 80
          },
          "message": {
            "text": "Declaration for member 'Parse' hides overridable inherited member function [Parse](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 19,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "115188f88ad6d6dd:1",
            "primaryLocationStartColumnFingerprint": "14"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/i_configuration_parsing_strategy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 27,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "Parse"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'StopOfferService' hides non-overridable inherited member function [StopOfferService](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 6,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "72386a90a7146912:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 6,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "StopOfferService"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'OfferService' hides non-overridable inherited member function [OfferService](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 14,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "64686549147f1a24:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "OfferService"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'InjectMock' hides non-overridable inherited member function [InjectMock](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 10,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "874a8e1ca75b3ece:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 175,
                  "startColumn": 10,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "InjectMock"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'UnsetReceiveHandler' hides non-overridable inherited member function [UnsetReceiveHandler](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 298,
                  "startColumn": 18,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "36a7584eb61e0ee5:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 18,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "UnsetReceiveHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'SetSubscriptionStateChangeHandler' hides non-overridable inherited member function [SetSubscriptionStateChangeHandler](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 287,
                  "startColumn": 18,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8ac7a694f9e072e5:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 18,
                  "endColumn": 51
                }
              },
              "message": {
                "text": "SetSubscriptionStateChangeHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'UnsetSubscriptionStateChangeHandler' hides non-overridable inherited member function [UnsetSubscriptionStateChangeHandler](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 273,
                  "startColumn": 18,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a701a97ab6187c2:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 18,
                  "endColumn": 53
                }
              },
              "message": {
                "text": "UnsetSubscriptionStateChangeHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'SetReceiveHandler' hides non-overridable inherited member function [SetReceiveHandler](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 261,
                  "startColumn": 18,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bbe1a025ac1317a3:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 18,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "SetReceiveHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'GetNumNewSamplesAvailable' hides non-overridable inherited member function [GetNumNewSamplesAvailable](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 242,
                  "startColumn": 25,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdbf6194060bd5d1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 25,
                  "endColumn": 50
                }
              },
              "message": {
                "text": "GetNumNewSamplesAvailable"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'GetFreeSampleCount' hides non-overridable inherited member function [GetFreeSampleCount](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 224,
                  "startColumn": 17,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b5a70a0717ab7e0a:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 17,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "GetFreeSampleCount"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'GetSubscriptionState' hides non-overridable inherited member function [GetSubscriptionState](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 209,
                  "startColumn": 23,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "187cb54e25153487:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 23,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "GetSubscriptionState"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'Unsubscribe' hides non-overridable inherited member function [Unsubscribe](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 196,
                  "startColumn": 10,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "831b5ca24a6c4c4d:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 10,
                  "endColumn": 21
                }
              },
              "message": {
                "text": "Unsubscribe"
              }
            }
          ]
        },
        {
          "ruleIndex": 30,
          "rule": {
            "id": "cpp/misra/inherited-non-overridable-member-function",
            "index": 79
          },
          "message": {
            "text": "Declaration for member 'Subscribe' hides non-overridable inherited member function [Subscribe](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 18,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3f2a8be7c27cc0cf:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 18,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "Subscribe"
              }
            }
          ]
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 744,
                  "startColumn": 5,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9abf333cd8540f46:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 672,
                  "startColumn": 5,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4648bb247ca71b2:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 5,
                  "endLine": 1252,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 5,
                  "endLine": 1233,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 5,
                  "endLine": 48,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 9,
                  "endLine": 98,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 5,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3d08dd48cdf22b42:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 5,
                  "endLine": 52,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 5,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "756091bf8d2fe196:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 9,
                  "endLine": 83,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 937,
                  "startColumn": 5,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "979ceb59f53a09e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 5,
                  "endLine": 33,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "991b659ea2313e7c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 500,
                  "startColumn": 9,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "21d6da9b8445c7ef:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 463,
                  "startColumn": 9,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a42d16f79460a29b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 360,
                  "startColumn": 9,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b26c0a21b9c6c07:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 292,
                  "startColumn": 5,
                  "endLine": 297,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "567cdc0ebef9e9b1:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 787,
                  "startColumn": 5,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "17e831e5aac9fe6d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 804,
                  "startColumn": 5,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cf7c6442f79c6815:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 753,
                  "startColumn": 9,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7eb6631448fced96:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 737,
                  "startColumn": 9,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e0a96a29c3d10a3a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 701,
                  "startColumn": 5,
                  "endLine": 702,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d0f743ead51cd9:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 562,
                  "startColumn": 5,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "839382afd9fdc2f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 581,
                  "startColumn": 9,
                  "endLine": 582,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d146f61ea893ebfe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 607,
                  "startColumn": 5,
                  "endLine": 608,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4281beed83c4138c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 594,
                  "startColumn": 21,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "397af33af4335277:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 431,
                  "startColumn": 5,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e638cf6de9f236bc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 31,
          "rule": {
            "id": "cpp/misra/use-single-local-declarators",
            "index": 207
          },
          "message": {
            "text": "Declaration list contains more than one declaration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 5,
                  "endLine": 417,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdb855b5456683a2:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable bounds_checking_enabled_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 6,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2734b18f6d12764:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable bounds_checking_enabled declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 6,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "998439c34570ad18:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 13,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9d812ca7ba7cfe0:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 23,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "67049d46d4cf4938:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable register_pid_fake_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 18,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3c985bdf1ddd670:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_ref_retries declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 45,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a22bdaab738cee0:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_ref_retries declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 45,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a22bdaab738cee0:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_ref_misses declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 45,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa7be4efd43bc21b:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_ref_misses declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 167,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa7be4efd43bc21b:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_alloc_misses declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 45,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ecce212dacc643a:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_alloc_misses declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 45,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ecce212dacc643a:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_alloc_retries declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 45,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83e2529e1e18af39:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable num_alloc_retries declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 45,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83e2529e1e18af39:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/thread_abstraction.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 31,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e364e6ad768c130a:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable deactivate_destruction_operation_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_registration_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 6,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfbf6f6e34ec4042:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable configuration_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 16,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3700849db91b93c:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable initialization_config_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 30,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab3a20c57312dae:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable runtime_initialization_locked_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 6,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9b223c18deb42fae:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mutex_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 12,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee00c7c70be25849:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 11,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "572c71a821999e7:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable current_proxy_instance_counter_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 335,
                  "startColumn": 60,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa7c8a712d05935c:1",
            "primaryLocationStartColumnFingerprint": "59"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kShmPathPrefix declared as const, but is not constant initialized because it [calls the Path(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 24,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c58b196caef5d449:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 39,
                  "endColumn": 50
                }
              },
              "message": {
                "text": "calls the Path(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable TMP_PATH declared as const, but is not constant initialized because it [calls the Path(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 24,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e830368a57a73fe3:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 33,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "calls the Path(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable register_pid_fake_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 29,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b62d0cc848657c3c:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 56,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6d2024153007afc2:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable is_in_receive_handler_context declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 19,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2108b8d713f5ec57:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 23,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d3cfa111968f4979:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 29,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12597611d06ce5cb:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 81,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12597611d06ce5cb:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 35,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "286d2065f78f7662:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 40,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f10e06f1cb71afe:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_field_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 40,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "45c9911f56d2ce52:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 26,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6446bdbb8a4c2105:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 32,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "31e5aee4990d9b33:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_field_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 43,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6de70249568fd69d:1",
            "primaryLocationStartColumnFingerprint": "42"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 43,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "39e5ecc6ac37f985:1",
            "primaryLocationStartColumnFingerprint": "42"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kSkeletonFieldTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [calls the unordered_map(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 5,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c9fdcb3e13af835:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 52,
                  "endLine": 124,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "calls the unordered_map(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kSkeletonEventTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [calls the unordered_map(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 5,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b73b61d87e800ed:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 52,
                  "endLine": 110,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "calls the unordered_map(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kProxyFieldTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [calls the unordered_map(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 5,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "677e1955ae268375:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 49,
                  "endLine": 100,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "calls the unordered_map(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kProxyEventTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [calls the unordered_map(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 5,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f8ab10b820cf261:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 49,
                  "endLine": 73,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "calls the unordered_map(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable creation_results_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 457,
                  "startColumn": 5,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3aee246fa09783fe:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable instance_identifier_creation_results_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 325,
                  "startColumn": 5,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0623bf1c5878700:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable instance_specifier_creation_results_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 322,
                  "startColumn": 5,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a2c991f0411e884a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable runtime_mock_ declared as non-const"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 11,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2f2010f7dd012a6f:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 41,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c00f25f272ecb790:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 55,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c00f25f272ecb790:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 42,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8156699caa232b04:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 53,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8156699caa232b04:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 352,
                  "startColumn": 18,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d96bf0024607401:1",
            "primaryLocationStartColumnFingerprint": "1"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from '__int_type' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 352,
                  "startColumn": 58,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d96bf0024607401:1",
            "primaryLocationStartColumnFingerprint": "41"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 352,
                  "startColumn": 93,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d96bf0024607401:1",
            "primaryLocationStartColumnFingerprint": "76"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 307,
                  "startColumn": 41,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1963b268ff0b8ceb:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 307,
                  "startColumn": 55,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1963b268ff0b8ceb:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned int' to 'long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 79,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6fce61b20e40b72a:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 471,
                  "startColumn": 13,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f24479a5fb59d12c:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 473,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b8e1df888242d6a:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 490,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1674655d4a30344:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 246,
                  "startColumn": 9,
                  "endColumn": 13
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a305137d1c2d0a9:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 250,
                  "startColumn": 9,
                  "endColumn": 13
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a32d63c438c7871e:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 250,
                  "startColumn": 16,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a32d63c438c7871e:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 265,
                  "startColumn": 34,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6915de3217a21914:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 13,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5302c11ad08d5801:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "59f127459331a4a3:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 120,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c395f9a3ee80c8e:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 13,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2984af2c3258c21:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 32,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2984af2c3258c21:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 17,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bce72efb0fe59869:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 37,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bce72efb0fe59869:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 24,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b790f9715e520333:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 42,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b790f9715e520333:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 20,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c98ae05c1899d370:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 39,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c98ae05c1899d370:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 16,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "291795a775f11700:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 34,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "291795a775f11700:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 18,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b75031b2a2f14637:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 37,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b75031b2a2f14637:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 58,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b75031b2a2f14637:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 77,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b75031b2a2f14637:1",
            "primaryLocationStartColumnFingerprint": "72"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 18,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34951747341b24b6:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 38,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34951747341b24b6:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 9,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4f0260494de18399:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 24,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4f0260494de18399:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 10,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "11dce06a7b765d99:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 23,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "11dce06a7b765d99:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 245,
                  "startColumn": 10,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "598851e9c0e72323:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 245,
                  "startColumn": 23,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "598851e9c0e72323:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 75,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8867744bb94f5768:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 102,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8867744bb94f5768:1",
            "primaryLocationStartColumnFingerprint": "55"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 13,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "832e4baac7970e81:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 40,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "832e4baac7970e81:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 75,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28181164ab57f78e:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 102,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28181164ab57f78e:1",
            "primaryLocationStartColumnFingerprint": "55"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SubscriberCountType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 13,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6043889cc4eca41:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'const SubscriberCountType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 36,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6043889cc4eca41:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 41,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "615701875b02ed23:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 68,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "615701875b02ed23:1",
            "primaryLocationStartColumnFingerprint": "59"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'const SlotNumberType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 82,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "615701875b02ed23:1",
            "primaryLocationStartColumnFingerprint": "73"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 902,
                  "startColumn": 35,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a815be05a008e08:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 902,
                  "startColumn": 54,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a815be05a008e08:1",
            "primaryLocationStartColumnFingerprint": "45"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 969,
                  "startColumn": 58,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9818cb4bec59b71:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 969,
                  "startColumn": 84,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9818cb4bec59b71:1",
            "primaryLocationStartColumnFingerprint": "79"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 991,
                  "startColumn": 31,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac976090b48def36:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 991,
                  "startColumn": 35,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac976090b48def36:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 419,
                  "startColumn": 26,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15b8ee413a2ce61b:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 421,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3c9712b21b17a6eb:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 425,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "455d2fe61bc10eed:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 429,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c397fbd8549fb979:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 387,
                  "startColumn": 26,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee20e3fb16dbfcb7:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 389,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "29a16fa9ec9d9b0:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 392,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "262feb4a1e1dc6aa:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 395,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9605bbf21df7fe03:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 398,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e912c86f5da41c58:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TracingSlotSizeType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 18,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8da32d05a242f34b:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TracingSlotSizeType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 65,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8da32d05a242f34b:1",
            "primaryLocationStartColumnFingerprint": "60"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SamplePointerIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 18,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e477f234e334f55b:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SamplePointerIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/service_element_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 53,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e477f234e334f55b:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceElementId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 18,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c08636408c3eefd:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceElementId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 44,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c08636408c3eefd:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 10,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b5a4c71095261dd8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 23,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b5a4c71095261dd8:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 13,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a572da97b64dad1e:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 30,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a572da97b64dad1e:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'ProxyInstanceCounter' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 64,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b4c26ea8045bbec2:1",
            "primaryLocationStartColumnFingerprint": "59"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'ProxyInstanceCounter' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 94,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b4c26ea8045bbec2:1",
            "primaryLocationStartColumnFingerprint": "89"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 12,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bbedbcab84c5784:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 34,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bbedbcab84c5784:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 17,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b83807bca8483ca:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 39,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b83807bca8483ca:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 18,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e72261d2a14f4db:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'LolaServiceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 36,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e72261d2a14f4db:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 56,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e72261d2a14f4db:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 75,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e72261d2a14f4db:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned short' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 66,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12c7a7ddf512b0bf:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 72,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12c7a7ddf512b0bf:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 35,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15ef3509cb11793e:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 43,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15ef3509cb11793e:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 41,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e422d57471b735f5:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned short' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 66,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9978f64640dd341:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 72,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9978f64640dd341:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TransactionLogIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 274,
                  "startColumn": 12,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "caf05f4181d8d83e:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TransactionLogIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 274,
                  "startColumn": 37,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "caf05f4181d8d83e:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TransactionLogIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 9,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e9f00eaaa4d08e8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TransactionLogIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 31,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e9f00eaaa4d08e8:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned short' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 11,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "971251d5c4c3ebda:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 63,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "971251d5c4c3ebda:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'int' to 'unsigned int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 10,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "971251d5c4c3ebda:1",
            "primaryLocationStartColumnFingerprint": "1"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SamplePointerIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 408,
                  "startColumn": 38,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "faaaa4daf5ca1284:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SamplePointerIndex' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 409,
                  "startColumn": 9,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "59ba268e4aac9fb8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 16,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c2db87e2d299d598:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 30,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c2db87e2d299d598:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 16,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e7de7de1cf78f0d:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'InstanceId' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 31,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3e7de7de1cf78f0d:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TracingSlotSizeType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 53,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1027c1a9f4a2ef4f:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'TracingSlotSizeType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 85,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1027c1a9f4a2ef4f:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned short' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 18,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6637e273a09a62f:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned short' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 37,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6637e273a09a62f:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 13,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d1727275c3330cff:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'SlotIndexType' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 33,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d1727275c3330cff:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 68,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "55"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 89,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "76"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 66,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd33b7042a7df971:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 90,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd33b7042a7df971:1",
            "primaryLocationStartColumnFingerprint": "85"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 558,
                  "startColumn": 41,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7fcfa11c6d8c1fac:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 558,
                  "startColumn": 62,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7fcfa11c6d8c1fac:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 34,
          "rule": {
            "id": "cpp/misra/functions-call-themselves-either-directly-or-indirectly",
            "index": 59
          },
          "message": {
            "text": "The function ~ServerConnection is indirectly recursive via this call to [~unique_ptr](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "endColumn": 2
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfb1bc6ab5f801cb:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/memory/unique_ptr.hpp"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 5,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "~unique_ptr"
              }
            }
          ]
        },
        {
          "ruleIndex": 35,
          "rule": {
            "id": "cpp/misra/character-handling-function-restrictions",
            "index": 24
          },
          "message": {
            "text": "Call to banned character handling function 'isalpha' from <cctype> or <cwctype>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 55,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "42"
          }
        },
        {
          "ruleIndex": 35,
          "rule": {
            "id": "cpp/misra/character-handling-function-restrictions",
            "index": 24
          },
          "message": {
            "text": "Call to banned character handling function 'isalnum' from <cctype> or <cwctype>."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 76,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "63"
          }
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation / of type long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 384,
                  "startColumn": 13,
                  "endLine": 385,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b4b23d53259cc01d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation - of type long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 390,
                  "startColumn": 55,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a8fe92c25a304624:1",
            "primaryLocationStartColumnFingerprint": "42"
          }
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation + of type long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 399,
                  "startColumn": 47,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a5f85dfa189e34d:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Aggregate variable does not initialize non-static data member [msg_flags](1) (and 6 more).\nAggregate variable does not initialize non-static data member [msg_controllen](2) (and 6 more).\nAggregate variable does not initialize non-static data member [msg_control](3) (and 6 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 19,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "906be8fd5a945700:2",
            "primaryLocationStartColumnFingerprint": "14"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 276,
                  "startColumn": 9,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "msg_flags"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 12,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "msg_controllen"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 11,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "msg_control"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Aggregate variable does not initialize non-static data member [msg_flags](1) (and 6 more).\nAggregate variable does not initialize non-static data member [msg_controllen](2) (and 6 more).\nAggregate variable does not initialize non-static data member [msg_control](3) (and 6 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 195,
                  "startColumn": 19,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "906be8fd5a945700:1",
            "primaryLocationStartColumnFingerprint": "14"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 276,
                  "startColumn": 9,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "msg_flags"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 271,
                  "startColumn": 12,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "msg_controllen"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 11,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "msg_control"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Aggregate variable does not initialize non-static data member [gid](1) (and 2 more).\nAggregate variable does not initialize non-static data member [uid](2) (and 2 more).\nAggregate variable does not initialize non-static data member [pid](3) (and 2 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 245,
                  "startColumn": 11,
                  "endColumn": 13
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "46220a4bec952fdd:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 383,
                  "startColumn": 9,
                  "endColumn": 12
                }
              },
              "message": {
                "text": "gid"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 382,
                  "startColumn": 9,
                  "endColumn": 12
                }
              },
              "message": {
                "text": "uid"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/socket.h"
                },
                "region": {
                  "startLine": 381,
                  "startColumn": 9,
                  "endColumn": 12
                }
              },
              "message": {
                "text": "pid"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Aggregate variable does not initialize non-static data member [__val](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 14,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e6bb6260b9ea5ff:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h"
                },
                "region": {
                  "startLine": 7,
                  "startColumn": 21,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "__val"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Aggregate variable does not initialize non-static data member [__val](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 14,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "188d9e3fdb162cdc:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h"
                },
                "region": {
                  "startLine": 7,
                  "startColumn": 21,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "__val"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [memory_resource_](1) (and 1 more).\nConstructor does not initialize non-static data member [quit_flag_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 5,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4af39fdc91c683e:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 45,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "memory_resource_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 10,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "quit_flag_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [addr_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 8,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "834dadeaeacab8e0:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 24,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "addr_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [enforce_max_samples_](1) (and 2 more).\nConstructor does not initialize non-static data member [max_subscribers_](2) (and 2 more).\nConstructor does not initialize non-static data member [max_subscribable_slots_](3) (and 2 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "46288df8f8e8549f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 16,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "enforce_max_samples_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 31,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "max_subscribers_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 26,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "max_subscribable_slots_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [enforce_max_samples_](1) (and 2 more).\nConstructor does not initialize non-static data member [max_subscribers_](2) (and 2 more).\nConstructor does not initialize non-static data member [max_subscribable_slots_](3) (and 2 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 49,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "46288df8f8e8549f:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 16,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "enforce_max_samples_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 31,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "max_subscribers_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 26,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "max_subscribable_slots_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [asil_b_control_local_](1) (and 1 more).\nConstructor does not initialize non-static data member [ignore_qm_control_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2b8a74ec2c5d476:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 62,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "asil_b_control_local_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 10,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "ignore_qm_control_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [asil_b_control_local_](1) (and 1 more).\nConstructor does not initialize non-static data member [ignore_qm_control_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 50,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2b8a74ec2c5d476:1",
            "primaryLocationStartColumnFingerprint": "49"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 62,
                  "endColumn": 83
                }
              },
              "message": {
                "text": "asil_b_control_local_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 10,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "ignore_qm_control_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [offset_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 419,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae0452635e5e26f5:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 40,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "offset_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [max_num_samples_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0b37b525fd907e7:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 17,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "max_num_samples_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [timestamp_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 14,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bcce83882a77f48b:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 37,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [managed_object_](1) (and 1 more).\nConstructor does not initialize non-static data member [timestamp_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ad0b80326ae5c61:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 13,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "managed_object_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 37,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [managed_object_](1) (and 1 more).\nConstructor does not initialize non-static data member [timestamp_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 14,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc22ce997c26bf63:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 13,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "managed_object_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 37,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [managed_object_](1) (and 1 more).\nConstructor does not initialize non-static data member [timestamp_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 5,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f37563a683069f2a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "startColumn": 13,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "managed_object_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 37,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [offset_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 5,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3875ba486fd0d159:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 40,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "offset_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [skeleton_instance_identifier_](1) (and 3 more).\nConstructor does not initialize non-static data member [provider_pid_](2) (and 3 more).\nConstructor does not initialize non-static data member [asil_level_](3) (and 3 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 5,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db95ea2ff0b6173:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 32,
                  "endColumn": 61
                }
              },
              "message": {
                "text": "skeleton_instance_identifier_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "provider_pid_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_rollback_executor.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 23,
                  "endColumn": 34
                }
              },
              "message": {
                "text": "asil_level_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [timestamp_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 14,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bcce83882a77f48b:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 37,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [consumer_event_data_control_local_view_](1) (and 3 more).\nConstructor does not initialize non-static data member [event_data_control_ptr_](2) (and 3 more).\nConstructor does not initialize non-static data member [event_slot_index_](3) (and 3 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 5,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fbb59ce92a579b07:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 42,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "consumer_event_data_control_local_view_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 204,
                  "startColumn": 34,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "event_data_control_ptr_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 19,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "event_slot_index_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [consumer_event_data_control_local_view_](1) (and 3 more).\nConstructor does not initialize non-static data member [event_data_control_ptr_](2) (and 3 more).\nConstructor does not initialize non-static data member [event_slot_index_](3) (and 3 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 5,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2620097e03efb59:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 42,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "consumer_event_data_control_local_view_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 204,
                  "startColumn": 34,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "event_data_control_ptr_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 19,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "event_slot_index_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [consumer_event_data_control_local_view_](1) (and 3 more).\nConstructor does not initialize non-static data member [event_data_control_ptr_](2) (and 3 more).\nConstructor does not initialize non-static data member [event_slot_index_](3) (and 3 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 14,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7d994dd55dc86fe:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 42,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "consumer_event_data_control_local_view_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 204,
                  "startColumn": 34,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "event_data_control_ptr_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 19,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "event_slot_index_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [field_getter_enabled_](1) (and 2 more).\nConstructor does not initialize non-static data member [qm_disconnect_](2) (and 2 more).\nConstructor does not initialize non-static data member [current_timestamp_](3) (and 2 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9e0a39961a8eba11:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 178,
                  "startColumn": 10,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "field_getter_enabled_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 177,
                  "startColumn": 10,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "qm_disconnect_"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_common.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 37,
                  "endColumn": 55
                }
              },
              "message": {
                "text": "current_timestamp_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [event_data_storage_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 5,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8fc2a5bb2567e27:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 92,
                  "startColumn": 19,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "event_data_storage_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [queue_position_](1) (and 1 more).\nConstructor does not initialize non-static data member [element_ptr_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 5,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "599afc3ac6e53ee7:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 17,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "queue_position_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 23,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "element_ptr_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [queue_position_](1) (and 1 more).\nConstructor does not initialize non-static data member [element_ptr_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 5,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "adde1070dd49bc08:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 17,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "queue_position_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 23,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "element_ptr_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [queue_position_](1) (and 1 more).\nConstructor does not initialize non-static data member [element_ptr_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 5,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e0d32123113ea1df:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 17,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "queue_position_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/method_signature_element_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 23,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "element_ptr_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [event_slots_raw_array_](1) (and 1 more).\nConstructor does not initialize non-static data member [aligned_sample_size_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 5,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c86794c569ec888:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 25,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "event_slots_raw_array_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 23,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "aligned_sample_size_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [event_data_storage_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea3bd3d8c0589b:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 35,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "event_data_storage_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [proxy_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d32d82be70a233da:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 30,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "proxy_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [proxy_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 172,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86c273c2c0f77378:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 30,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "proxy_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [proxy_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b76e46d88ece64bc:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 30,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "proxy_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [skeleton_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d7b7482e86b93a81:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [skeleton_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff0f80ca1cdbd841:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [skeleton_event_mock_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 136,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83ccc17b010614cd:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_event_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [is_set_handler_registered_](1) (and 1 more).\nConstructor does not initialize non-static data member [skeleton_field_mock_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 341,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a75d915dfcc3be4f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 314,
                  "startColumn": 10,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "is_set_handler_registered_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_field_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [is_set_handler_registered_](1) (and 1 more).\nConstructor does not initialize non-static data member [skeleton_field_mock_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 5,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6e776b53dd3e36f4:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 314,
                  "startColumn": 10,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "is_set_handler_registered_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_field_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [is_set_handler_registered_](1) (and 1 more).\nConstructor does not initialize non-static data member [skeleton_field_mock_](2) (and 1 more)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 5,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2b0e5437669be36:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 314,
                  "startColumn": 10,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "is_set_handler_registered_"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 32,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "skeleton_field_mock_"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'EventDataControlComposite<AtomicIndirectorReal>' is declared in a different file than [EventDataControlComposite<T>](1) and all specialized template arguments.\nTemplate specialization 'EventDataControlComposite<AtomicIndirectorMock>' is declared in a different file than [EventDataControlComposite<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dc545c4fd05c5997:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 18,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "EventDataControlComposite<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'PolymorphicOffsetPtrAllocator<pair<Key, MappedType>>' is declared in a different file than [PolymorphicOffsetPtrAllocator<T>](1) and all specialized template arguments.\nTemplate specialization 'PolymorphicOffsetPtrAllocator<pair<Key, MappedType>>' is declared in a different file than [PolymorphicOffsetPtrAllocator<T>](2) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b44a97772b0ced7:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "PolymorphicOffsetPtrAllocator<T>"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 18,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "PolymorphicOffsetPtrAllocator<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'ProxyMethod<..(..)>' is declared in a different file than [ProxyMethod<Signature>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 7,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1845941c3c032ceb:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "ProxyMethod<Signature>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'ProxyMethod<..(..)>' is declared in a different file than [ProxyMethod<Signature>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 7,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b29f14f8b211b5d7:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "ProxyMethod<Signature>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'ProxyMethod<..(..)>' is declared in a different file than [ProxyMethod<Signature>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_without_in_args_or_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1df37945ca309b1:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "ProxyMethod<Signature>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'ProxyMethod<..(..)>' is declared in a different file than [ProxyMethod<Signature>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea6366d045f60f0:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 18
                }
              },
              "message": {
                "text": "ProxyMethod<Signature>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_return_type<..(*)(..)>' is declared in a different file than [get_callable_return_type<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 8,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3d96d279530b4da6:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 8,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "get_callable_return_type<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_return_type<..(*)(..)>' is declared in a different file than [get_callable_return_type<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 8,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c175cc214975738e:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 8,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "get_callable_return_type<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_return_type<..(*)(..)>' is declared in a different file than [get_callable_return_type<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 8,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a2b2975fcc586575:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 8,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "get_callable_return_type<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_return_type<..(*)(..)>' is declared in a different file than [get_callable_return_type<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 8,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d95f2a96fe9de03a:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 8,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "get_callable_return_type<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_args_types<..(*)(..)>' is declared in a different file than [get_callable_args_types<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 8,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f51246fbf0d76d28:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 8,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "get_callable_args_types<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_args_types<..(*)(..)>' is declared in a different file than [get_callable_args_types<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 8,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1a44bcbff6ce876:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 8,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "get_callable_args_types<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_args_types<..(*)(..)>' is declared in a different file than [get_callable_args_types<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 8,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "991784d3afd7d641:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 8,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "get_callable_args_types<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'get_callable_args_types<..(*)(..)>' is declared in a different file than [get_callable_args_types<T>](1) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 8,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "795a3939fa415e95:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/callable_traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 8,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "get_callable_args_types<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'ProxyFieldImpl<SampleDataType, WithNotifier>' is declared in a different file than [ProxyFieldImpl<<unnamed>, <unnamed>...>](1) and all specialized template arguments.\nTemplate specialization 'ProxyFieldImpl<SampleDataType, WithNotifier>' is declared in a different file than [ProxyFieldImpl<<unnamed>, <unnamed>...>](2) and all specialized template arguments.\nTemplate specialization 'ProxyFieldImpl<SampleDataType, WithNotifier>' is declared in a different file than [ProxyFieldImpl<<unnamed>, <unnamed>...>](3) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d25b2af52a510c47:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_in_args_and_return.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 18,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "ProxyFieldImpl<<unnamed>, <unnamed>...>"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_with_return_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 18,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "ProxyFieldImpl<<unnamed>, <unnamed>...>"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 18,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "ProxyFieldImpl<<unnamed>, <unnamed>...>"
              }
            }
          ]
        },
        {
          "ruleIndex": 38,
          "rule": {
            "id": "cpp/misra/template-specialization-wrong-location",
            "index": 172
          },
          "message": {
            "text": "Template specialization 'SkeletonFieldImpl<SampleDataType, WithNotifier>' is declared in a different file than [SkeletonFieldImpl<<unnamed>, <unnamed>...>](1) and all specialized template arguments.\nTemplate specialization 'SkeletonFieldImpl<SampleDataType, WithNotifier>' is declared in a different file than [SkeletonFieldImpl<T, Ts...>](2) and all specialized template arguments."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 7,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9fb086707a22da13:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 18,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "SkeletonFieldImpl<<unnamed>, <unnamed>...>"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 18,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "SkeletonFieldImpl<T, Ts...>"
              }
            }
          ]
        },
        {
          "ruleIndex": 39,
          "rule": {
            "id": "cpp/misra/duplicate-type-definitions",
            "index": 44
          },
          "message": {
            "text": "Type 'score::mw::com::impl::mock_binding::CustomDeleter' is defined in files [sample_allocatee_ptr.h](1) and [sample_ptr.h](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52f67147287450ed:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/mock_binding/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 7,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "sample_allocatee_ptr.h"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/mock_binding/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 7,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "sample_ptr.h"
              }
            }
          ]
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/com_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 9,
                  "endLine": 220,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8e2b876fa06b6e55:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 5,
                  "endLine": 143,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f65440bab2dd4361:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 9,
                  "endLine": 93,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8e2b876fa06b6e55:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 5,
                  "endLine": 82,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8414cc32a75c49ff:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 9,
                  "endLine": 53,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b0d54d925fa7112:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 40,
          "rule": {
            "id": "cpp/misra/appropriate-structure-of-switch-statement",
            "index": 4
          },
          "message": {
            "text": "Switch statement is missing a terminator that moves the control out of its body."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 9,
                  "endLine": 55,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b24488ce460f765:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 37,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d62013c5cc22dc31:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 12,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c07331921fadc5cc:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 12,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "788421c02554dcef:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 12,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216833781ca80a61:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 12,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb8ba29dc9cab8d7:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 16,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c97e2982cdd53fac:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 38,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c4627aab2632948:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 42,
          "rule": {
            "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
            "index": 87
          },
          "message": {
            "text": "Symmetrical operator 'operator>' should be implemented as a non-member function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 10,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a33006707bd274d:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 42,
          "rule": {
            "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
            "index": 87
          },
          "message": {
            "text": "Symmetrical operator 'operator<' should be implemented as a non-member function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 10,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fd83113baa7adf4e:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 42,
          "rule": {
            "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
            "index": 87
          },
          "message": {
            "text": "Symmetrical operator 'operator>' should be implemented as a non-member function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 10,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b7f3a6f292a5a9fa:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 42,
          "rule": {
            "id": "cpp/misra/invalid-operator-overloaded-as-member-function",
            "index": 87
          },
          "message": {
            "text": "Symmetrical operator 'operator<' should be implemented as a non-member function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 10,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "322e96e94bb13c60:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 43,
          "rule": {
            "id": "cpp/misra/loop-body-compound-condition",
            "index": 97
          },
          "message": {
            "text": "Loop body not enclosed within braces."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 290,
                  "startColumn": 5,
                  "endLine": 313,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c483f3ae2c66bb1d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 43,
          "rule": {
            "id": "cpp/misra/loop-body-compound-condition",
            "index": 97
          },
          "message": {
            "text": "Loop body not enclosed within braces."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 888,
                  "startColumn": 5,
                  "endLine": 896,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "25c69e89628e24e3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 43,
          "rule": {
            "id": "cpp/misra/loop-body-compound-condition",
            "index": 97
          },
          "message": {
            "text": "Loop body not enclosed within braces."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 719,
                  "startColumn": 5,
                  "endLine": 723,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bc71bdb4d23c8898:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'MessageFor' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 22,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5c78f96883eb57f4:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SharedMemoryFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8d14bf86c219b632:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~TypedMemoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/typedshm/typedshm_wrapper/typed_memory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea3863747c466d3a:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~FixedBufferStreamBuf' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b3a664494c8aaf66:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'MessageFor' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/com_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 22,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5c78c6ccb8a3dcbf:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'MessageFor' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 22,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5c78c6ccb8a3dcbf:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ReOfferedState' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "446e0fb9afdd380e:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~StopOfferedState' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 87,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5008f0756744b484:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~OfferedState' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b764953cea4eb10e:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~IRuntime' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/i_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 13,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2317ec3138022146:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyMethod' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ddc905eb1eea32fd:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~TracingFilterConfig' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f949a2af9ff6e03e:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'GetTracingRuntime' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 274,
                  "startColumn": 27,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58e8fc2ddd1526cf:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'GetTracingFilterConfig' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 265,
                  "startColumn": 6,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0837c8a78f99b4a:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'GetServiceDiscovery' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 258,
                  "startColumn": 6,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7d8ad68ace263820:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'GetBindingRuntime' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 248,
                  "startColumn": 6,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5c2210f5d8eb9e15:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'resolve' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 219,
                  "startColumn": 33,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1cbee6aaa2e78e1b:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericProxyEventBinding' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3efddea5567943ad:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~PartialRestartPathBuilder' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b2d54b080da80dad:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ShmPathBuilder' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2318f0fc1d50b53f:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~MessagePassingServiceInstanceFactory' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c7bf3bcd34e6816:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonMethod' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dac4bcc4227b4ba:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericSkeletonEventBinding' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b57ee741d92bea5:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ConfigurationJsonParsingStrategy' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_json_parsing_strategy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c23f2fd9fc37e83:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'MessageFor' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 22,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5c78f96883eb57f4:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericSkeleton' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50697d2818ee961d:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyEventBase' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "624962f97f528e0d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericProxy' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "77ace1cefc0a87bc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonEventBase' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 13,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3ff5e8fbf0c2190:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericSkeletonEvent' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9f32bd256dcd8661:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonMethodBase' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 5,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e7c535c8078a97e:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyMethodBase' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 13,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15e7dca8c1f6c28d:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonMethod' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 5,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "69900d653361323c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function 'MessageFor' uses redundant 'override' and 'final' specifiers together."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_factory_error.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 22,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "617a70d566ed18e3:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyMethodBindingFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58eb9d3564ea673a:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyBindingFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d007a7cc10ceeaa0:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~GenericProxyEventBindingFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c76d088acc5131b0:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonBindingFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "db727a358067a66e:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonMethodBindingFactoryImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 8
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8d9397c41b904509:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyFieldBase' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 13,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa9098ae12ff8522:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~SkeletonFieldBase' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 13,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "afae35e4d61bae33:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ProxyFieldImpl' overrides a base function but lacks 'override' or 'final' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 5,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee635b07e77039e0:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 22,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "322f05c8ed5e7b1c:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 67,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4bba707c07c4973b:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 36,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3164c9beb78206aa:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 48,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfc60263a159259a:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 39,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5dd1d159cbe2f905:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 45,
          "rule": {
            "id": "cpp/misra/local-variable-static-storage-duration",
            "index": 93
          },
          "message": {
            "text": "Local variable with static storage duration."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_method_binding_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9251d7311ecff628:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 46,
          "rule": {
            "id": "cpp/misra/std-move-with-non-const-lvalue",
            "index": 170
          },
          "message": {
            "text": "Call to 'std::move' with xvalue argument of type 'SampleReferenceGuard &&'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 187,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2280518a1e0099fa:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 47,
          "rule": {
            "id": "cpp/misra/copy-and-move-assignments-shall-handle-self-assignment",
            "index": 30
          },
          "message": {
            "text": "User defined copy or user defined move does not handle self-assignment correctly."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 28,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "785a9615e27d9446:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'EventDataControl' does not fall into a valid category (isUnmovable, move-only, or copy-enabled)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6307ef1c2a1a27d0:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'IOfferedState' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 7,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1915c6480dc299b6:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'TransactionLog' does not fall into a valid category (isUnmovable, move-only, or copy-enabled)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab5150de8aa69e13:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'CopyableAtomic<T>' has customized copy constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "51998667a141378a:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'MethodData' does not fall into a valid category (isUnmovable, move-only, or copy-enabled)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1effc76635905fb1:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'ProxyMethodBinding' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_binding.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee84d596a9f9bd96:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'ServiceDataStorage' does not fall into a valid category (isUnmovable, move-only, or copy-enabled)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f029dc32507e4ae:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'SamplePtr<SampleType>' has customized move constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 7,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9fc9fa14ff7fa05:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'SampleAllocateePtr<SampleType>' has customized the destructor, but does not customize the move assignment operator."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "71f5a70fc50cf7da:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'SampleAllocateePtr<SampleType>' has customized move assignment operator, move constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "143647cba32b45b2:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'EnableReferenceToMoveableFromThis<T>' has customized move assignment operator, move constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 7,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a28c29e040bcd49:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'FlagOwner' has customized move assignment operator, move constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/flag_owner.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 7,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8cc5b391410d22c:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'ProxyEventBase' has customized the destructor, but does not customize the move assignment operator.\nClass 'ProxyEventBase' has customized the destructor, but does not customize the move constructor.\nClass 'ProxyEventBase' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9c0afbf195868f80:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'SkeletonMethodBase' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/skeleton_method_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 7,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4913bd585d834595:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'TracingRuntimeAtomicState' has customized move assignment operator, move constructor, but does not customize the destructor."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 7,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "430eeed857e332e4:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'ProxyMethodBase' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "22c142964c090496:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 48,
          "rule": {
            "id": "cpp/misra/improperly-provided-special-member-functions",
            "index": 72
          },
          "message": {
            "text": "Class 'ProxyFieldBase' violates inheritance requirements for special member functions."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 7,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f3fd1a0afa6afcc4:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AcquireLatestRegionVersionForRead'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 284,
                  "startColumn": 41,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dbea9fcbe66edad:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AcquireRegionVersionForOverwrite'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 212,
                  "startColumn": 28,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3f82cc6dd5cb450:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AcquireRegionVersionForOverwrite'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 28,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3f82cc8d846cd5d:2",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AcquireRegionVersionForOverwrite'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 28,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c3f82cc8d846cd5d:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AcquireLatestRegionVersionForRead'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 239,
                  "startColumn": 41,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "851c27c31c7fbb43:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'release'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 9,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c70fc3297c3150:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetValueForUpdate'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/non_allocating_future/non_allocating_future.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 9,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "57f15b5caf13abb6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'MarkReady'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/non_allocating_future/non_allocating_future.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 9,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9372c21bc115ce7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'DereferenceEventWithoutTransactionLogging'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 224,
                  "startColumn": 5,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f575b74e076638f3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'SetTransactionLogLocalView'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c1694dc2935a252:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetNextFreeMultiSlot'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 45,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c486c7655b192d9:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'AllocateNextMultiSlot'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 17,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0028baa49f74075:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'CalculatePointerFromOffset'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 596,
                  "startColumn": 12,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6838df0859c44911:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'CalculateOffsetFromPointer'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 544,
                  "startColumn": 25,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "66e16b01ecae2453:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetPointerWithoutBoundsCheck'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 587,
                  "startColumn": 12,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e81f684af5a4af6:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetPointerWithBoundsCheck'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 257,
                  "startColumn": 16,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cf644d97a7f0827:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetPointerWithBoundsCheck'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 238,
                  "startColumn": 16,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "544b3a3c90e66b70:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'GetPointerWithBoundsCheck'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 16,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a13e168066e49004:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'DecrementOffset'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 724,
                  "startColumn": 5,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "755acb8c156c8ba6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'IncrementOffset'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 709,
                  "startColumn": 5,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f423c98165c88618:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'IncrementOffset'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 679,
                  "startColumn": 9,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b031ade18e2ac335:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'DecrementOffset'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 683,
                  "startColumn": 9,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a43eaedd6f6b902a:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'CalculateOffsetFromPointer'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 399,
                  "startColumn": 15,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d7ae1be1fb894ecf:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'FindOldestUnusedSlot'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 47,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a2622e3b23502296:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'TryAllocateSlot'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 13,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "444e07663a2c322d:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'LogPerformanceMetrics'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 13,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2283efe8b820b064:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'LogPerformanceMetrics'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 5,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a2a085530f5c31c8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'internal_delete'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/sample_allocatee_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 9,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f0d209869bbb289:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 49,
          "rule": {
            "id": "cpp/misra/function-pointer-conversion-context",
            "index": 57
          },
          "message": {
            "text": "Inappropriate conversion from function type to pointer-to-function type in 'instance'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 16,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac92f654b9d69172:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'unsigned long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 37,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d62013c5cc22dc31:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'unsigned long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 12,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c07331921fadc5cc:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 10,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4800ae650b20e1e9:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 13,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2ea01b747738b67:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 25,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3eb2a8f3edd8f317:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1380c8f10630ce49:2",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1380c8f10630ce49:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28abaafcfd951e68:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b8449f08ed2f7e52:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [imbue](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 16,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfafba8749712db5:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/basic_ios.tcc"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 5,
                  "endColumn": 38
                }
              },
              "message": {
                "text": "imbue"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [copy](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 156,
                  "startColumn": 5,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdac4a459855adc3:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_algobase.h"
                },
                "region": {
                  "startLine": 624,
                  "startColumn": 5,
                  "endColumn": 6
                }
              },
              "message": {
                "text": "copy"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 20,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "498e5e710e742d97:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 278,
                  "startColumn": 16,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ce6c9394d73189fe:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dbc14dd4f6f2fcd7:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af799269b2368a03:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af799269d7dbddcc:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cf43acece6f4061a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4caaffda4665f05a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c16c319cfa75c14:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d1a559200a836e41:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2602336cac299a95:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dccc6dd7373c3d93:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96d3b74f53583678:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "35184d09319fe82b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 33,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "379baeab8e4251a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96d3b74f53583678:2",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 600,
                  "startColumn": 50,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44f7a27b1ea878a3:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 605,
                  "startColumn": 50,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c2540640b77fb41:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 22,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "437fb9d6c850379f:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 22,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a88f93aa74bdf36b:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/+_repo_rules2+ubuntu24_04_sysroot_amd64/sysroot/usr/include/c++/13/bits/stl_vector.h"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 2,
                  "endColumn": 3
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 52,
          "rule": {
            "id": "cpp/misra/internal-linkage-specified-appropriately",
            "index": 84
          },
          "message": {
            "text": "Static specifier used in anonymous namespace."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 46,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cf4a2de6b26db55b:1",
            "primaryLocationStartColumnFingerprint": "45"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'kLeftShiftBits' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 39,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "be5d7e42dd9a388d:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'kRightShiftBits' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/proxy_method_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 39,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8edcce89f0b8be5:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'fd' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/i_sealed_shm.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 67,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5e44ec2feb73ed42:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'fd' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 26,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "df9e085b1a6f3bc5:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Function 'operator()' has variable-width return type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 107,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9f8993347432d2f:1",
            "primaryLocationStartColumnFingerprint": "102"
          }
        },
        {
          "ruleIndex": 54,
          "rule": {
            "id": "cpp/misra/advanced-memory-management-used",
            "index": 2
          },
          "message": {
            "text": "Call to banned function `operator new` which is a non-replaceable allocation function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 980,
                  "startColumn": 28,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a8529f1ff9e43678:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 54,
          "rule": {
            "id": "cpp/misra/advanced-memory-management-used",
            "index": 2
          },
          "message": {
            "text": "Call to banned function `operator new` which is a non-replaceable allocation function."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 16,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "695138f344ea348c:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'unsigned long' to pointer type 'void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 12,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216833781ca80a61:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'uintptr_t' to pointer type 'void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 12,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb8ba29dc9cab8d7:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'ControlBlock *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 649,
                  "startColumn": 28,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7375fc2bdf6bbd42:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'UnixDomainSocketAddress *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 23,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a990a8ef764dc42c:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'const void *' to pointer type 'pointer'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 493,
                  "startColumn": 16,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ad91891d778d6c9c:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'pointer'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 499,
                  "startColumn": 16,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3d78775ac3615f24:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'value_type *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 20,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "14dc17da31379767:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'ProxyInstanceIdentifier *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 31,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95885cf589d28cf0:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'ProxyInstanceIdentifier *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 31,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bce0963c314a483:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'SkeletonInstanceIdentifier *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 31,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60551b85ccfef73d:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'SkeletonInstanceIdentifier *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 31,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d91e8df91056cf86:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'const void *' to pointer type 'const uint8_t *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 168,
                  "startColumn": 47,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d6211b0fbf35866:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'byte *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 45,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8ed237b50d343cba:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'byte *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 44,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b769bcd0070bdebc:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'uintptr_t' to pointer type 'byte *'.\nCast from integral type 'uintptr_t' to pointer type 'const void *'.\nCast from integral type 'uintptr_t' to pointer type 'void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 12,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "788421c02554dcef:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'ServiceDataControl *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 213,
                  "startColumn": 40,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c76b8123ac8709b:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'ServiceDataStorage *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 327,
                  "startColumn": 40,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8b5dda25cd8c3022:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'MethodData *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 822,
                  "startColumn": 39,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3102fd0ff57ea06:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'ServiceDataStorage *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 40,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8b5dda25cd8c3022:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'ServiceDataControl *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 40,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f800308822ed4597:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 56,
          "rule": {
            "id": "cpp/misra/object-accessed-after-lifetime-misra",
            "index": 134
          },
          "message": {
            "text": "instance_depl_info is dereferenced here but accesses invalid memory because the temporary object went out of scope [here](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 53,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "da63b03d25c658b5:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 73,
                  "endColumn": 101
                }
              },
              "message": {
                "text": "here"
              }
            }
          ]
        },
        {
          "ruleIndex": 56,
          "rule": {
            "id": "cpp/misra/object-accessed-after-lifetime-misra",
            "index": 134
          },
          "message": {
            "text": "service_type_depl_info is dereferenced here but accesses invalid memory because the temporary object went out of scope [here](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 49,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4496039b37dc0716:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 77,
                  "endColumn": 101
                }
              },
              "message": {
                "text": "here"
              }
            }
          ]
        },
        {
          "ruleIndex": 56,
          "rule": {
            "id": "cpp/misra/object-accessed-after-lifetime-misra",
            "index": 134
          },
          "message": {
            "text": "service_type_deployment is dereferenced here but accesses invalid memory because the temporary object went out of scope [here](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 32,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b0dc4038a8da008:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 78,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "here"
              }
            }
          ]
        },
        {
          "ruleIndex": 56,
          "rule": {
            "id": "cpp/misra/object-accessed-after-lifetime-misra",
            "index": 134
          },
          "message": {
            "text": "service_type_deployment is dereferenced here but accesses invalid memory because the temporary object went out of scope [here](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 32,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6d2b47507862c47:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 78,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "here"
              }
            }
          ]
        },
        {
          "ruleIndex": 57,
          "rule": {
            "id": "cpp/misra/use-smart-ptr-factory-functions",
            "index": 208
          },
          "message": {
            "text": "Use of raw pointer constructor for 'std::shared_ptr'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_client_cache.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 75,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5101c34aa965b7aa:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 58,
          "rule": {
            "id": "cpp/misra/pointer-arithmetic-forms-an-invalid-pointer",
            "index": 145
          },
          "message": {
            "text": "This pointer accesses element at index 4 while the underlying object has length 1.\nThis pointer accesses element at index 8 while the underlying object has length 1.\nThis pointer accesses element at index 12 while the underlying object has length 1.\nThis pointer accesses element at index 12 while the underlying object has length 1.\nThis pointer accesses element at index 24 while the underlying object has length 1."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 155,
                  "startColumn": 36,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "51a24cb5c418fa50:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 155,
                            "startColumn": 36,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "source_begin"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 155,
                            "startColumn": 36,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "source_begin"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 155,
                            "startColumn": 36,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "source_begin"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 154,
                            "startColumn": 38,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "& ..."
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 155,
                            "startColumn": 36,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "source_begin"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 357,
                  "startColumn": 21,
                  "endLine": 361,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d9e3d07ad6feb18:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 285,
                  "startColumn": 9,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f084d336488cb8c:2",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 213,
                  "startColumn": 9,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c50d64ba08a8b286:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 180,
                  "startColumn": 9,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e07c10c7644ddcd0:2",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 9,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e07c10c7644ddcd0:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 241,
                  "startColumn": 9,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6f084d336488cb8c:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/managed_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 43,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "32959df0aa1aa074:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 40,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f87094933c0179ae:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 38,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "99e276ab5e10e3d0:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 766,
                  "startColumn": 13,
                  "endLine": 770,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8978b695c4a0894e:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 13,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "84682394efc27756:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log_on_timeout.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 17,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "47ecc566a9dfece4:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 44,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4387b4d235d2e44d:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 44,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3c581e81593416a3:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 56,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1c46374c409c523:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 55,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1c46374c409c523:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 63,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4fbb03eadcfd566:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 62,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4fbb03eadcfd566:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 79,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1350cfe9bb9ca0c:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 78,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e1350cfe9bb9ca0c:1",
            "primaryLocationStartColumnFingerprint": "73"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/log.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1d55f58a24574d7d:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'char' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 17,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "900d2a5595c7a2bc:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 129,
                  "startColumn": 21,
                  "endLine": 130,
                  "endColumn": 117
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6beb37e11b02219c:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/consumer_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 13,
                  "endLine": 127,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb220debab77bf00:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 13,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e98a0d1976bc6a7a:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 17,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "809e519cbc2f63fd:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 17,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eef581bd46c3b539:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 248,
                  "startColumn": 9,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e2797a2d5623e2c6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control_composite.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 9,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "984de2fadb0eb1c5:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 490,
                  "startColumn": 19,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5157df073e1a4a02:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'auto' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 153,
                  "startColumn": 13,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6477336bac59bcd:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'auto' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_subscription_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 13,
                  "endColumn": 20
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "112bc35ff15aceac:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 258,
                  "startColumn": 5,
                  "endLine": 261,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab981bd2cd1327b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 231,
                  "startColumn": 5,
                  "endLine": 234,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fe744c0cfea04c5c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 187,
                  "startColumn": 9,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ea9de5bd173b85c3:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 161,
                  "startColumn": 9,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "98cd884a37095b67:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const OffsetPtr<T>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 792,
                  "startColumn": 13,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "771f2735785100ee:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const OffsetPtr<T>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 783,
                  "startColumn": 13,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96806405f3bb5d54:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 9,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f77f8169179277e:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/polymorphic_offset_ptr_allocator.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 9,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "903365f8d4b82769:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'uint8_t' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_slot.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 16,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d0fb764d6634e992:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'CopyableAtomic<bool>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 20,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6e1f8b94bab1473d:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 296,
                  "startColumn": 13,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee97940f46639e4e:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 299,
                  "startColumn": 17,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f476c6037edd4ea:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 302,
                  "startColumn": 69,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "51e8901caae05ea9:1",
            "primaryLocationStartColumnFingerprint": "52"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 313,
                  "startColumn": 29,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60f084c877a9013:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 19,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a94ba261f58e17b3:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 143,
                  "startColumn": 19,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b657329289f26326:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 19,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b657328c50435846:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'shared_ptr<MoveOnlyScopedFunction<..(..), allocator<unsigned char>>>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 994,
                  "startColumn": 18,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3f5282189a7666d0:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 16,
                  "endLine": 1252,
                  "endColumn": 119
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1254,
                  "startColumn": 10,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ca62a18c1caceda6:2",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 16,
                  "endLine": 1233,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1235,
                  "startColumn": 10,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ca62a18c1caceda6:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 35,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d75a0a84b73a82b:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 12,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4354591f720a9fe:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_utility.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 9,
                  "endColumn": 115
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ee5b4a635f07d26c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 16,
                  "endLine": 48,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 9,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "76eb3baf7490370c:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 20,
                  "endLine": 98,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 13,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7179be58dbe54bd0:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 16,
                  "endLine": 52,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 20,
                  "endLine": 83,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40ec0152904a70b0:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 13,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7179be580d4f1e2a:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4c88e1b5338fcd8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ce834fc72b2a178:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 438,
                  "startColumn": 9,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3c5cc91b354943e6:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 9,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "248a888e80a0aaa8:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 13,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "80df802367ce84e2:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/provider_event_data_control_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 13,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "444e07663a2c322d:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 208,
                  "startColumn": 29,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "31193d31eeef7566:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 13,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4653d74d95721031:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 937,
                  "startColumn": 16,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "979ceb59f53a09e:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 939,
                  "startColumn": 49,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e46dafb4babbe2d0:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 700,
                  "startColumn": 44,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9888ef84d096eb1:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic<bool>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 24,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c44de9c60ff63a8e:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 12,
                  "endColumn": 13
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "75e564a698b4366c:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 88,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e8752420c86f532:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd691033384f0817:2",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd691033384f0817:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 10,
                  "endLine": 33,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "991b659ea2313e7c:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/rollback_synchronization.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 49,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9f0fe7cfd11c5f01:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 16,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1af7a6fc4cf2db63:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 5,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb2c80a5d86e4478:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 562,
                  "startColumn": 16,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "839382afd9fdc2f:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 564,
                  "startColumn": 49,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1b50b1f659ae635:1",
            "primaryLocationStartColumnFingerprint": "44"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 266,
                  "startColumn": 9,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1f3a29718f5a684:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb64c98589a7279:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 131,
                  "startColumn": 9,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e5f53c87daac4758:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 9,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "47b92b978e30bbab:2",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 86,
                  "startColumn": 9,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "47b92b978e30bbab:3",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 9,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "47b92b978e30bbab:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 209,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 189,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 29,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "20a4b36e692ef627:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 82,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 9,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f030a168e531c4b3:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/error_serializer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 5,
                  "endLine": 40,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd121bcc1884647f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/reference_to_moveable.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 9,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5a9a22ec19a53918:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 22,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "620809ac71b436eb:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/methods/proxy_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 35,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dd8a295c76535f43:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/binding_runtime_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 93,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "48b8b9d42dc71f0c:1",
            "primaryLocationStartColumnFingerprint": "88"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 191,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9bb62ae5def86057:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 201,
                  "startColumn": 9,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc1ff59863675bed:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enable_reference_to_moveable_from_this.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 61,
                  "startColumn": 13,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8d58eb5d6ecf0ff:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'shared_ptr<move_only_function<..(..), 32UL, 16UL>>' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 316,
                  "startColumn": 22,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c2033bf018c6bfb8:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 273,
                  "startColumn": 17,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95e5b4c62bbaada5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 265,
                  "startColumn": 17,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "509166c5886e0c45:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 258,
                  "startColumn": 17,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1a70316ca5f5c9f5:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 237,
                  "startColumn": 21,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7d892269a200582:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 190,
                  "startColumn": 13,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bda8781f58ca765:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 13,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a93276f2da85cc6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 19,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9eca710214b1e84:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 24,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "88842de9363715af:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 24,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3fba72c7fb080dd1:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 153,
                  "startColumn": 23,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ce6384cb4b385ec7:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 9,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "53821b1273c74f1b:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 16,
                  "endLine": 417,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bdb855b5456683a2:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'type &&' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 418,
                  "startColumn": 9,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eede4f9e704be3c4:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'int' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 13,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fc7686d0207909d4:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'const LolaServiceInstanceDeployment *' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 25,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3eb2a8f3edd8f317:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 9,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "27719608a8995ffc:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'bool &' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 13,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "35822000bfe7716f:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 612,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4050a81ec564582f:2",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 519,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4050a81ec564582f:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 403,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26ff8a388133591d:2",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 346,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26ff8a388133591d:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 328,
                  "startColumn": 10,
                  "endColumn": 11
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c6da45022e2bcf2c:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion operator call from 'atomic_bool' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 247,
                  "startColumn": 12,
                  "endColumn": 13
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8b1e9acaa8d57d51:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_field.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 471,
                  "startColumn": 9,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "139e7ef4286d191b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'IRuntime *' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1380c8f10630ce49:2",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'IRuntime *' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1380c8f10630ce49:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'IRuntime *' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28abaafcfd951e68:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'IRuntime *' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 21,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b8449f08ed2f7e52:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 28,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a8f4ae84953d5fe:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 28,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44e9c7429137cfd8:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 21,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "81ef296df28df72:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 23,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b4c6e0ec81fa304b:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_slot_status.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "395126140105ff4b:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 27,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e92504562248eedd:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 27,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e92504562248eedd:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 123,
                  "startColumn": 6,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2bd6f91af1b85902:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 33,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3da215312fa44492:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 32,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2a296fdcab04eb15:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 6,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d81f5c9797554d6e:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 112,
                  "startColumn": 45,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8bac1223d80343c9:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 31,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3ce7288466cec8d6:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 25,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "de72fbf853d5a854:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 141,
                  "startColumn": 20,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9116394b5abe51f6:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 91,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c69819f78be40cc8:1",
            "primaryLocationStartColumnFingerprint": "86"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_not_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 150,
                  "startColumn": 37,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "313d6051c8dc40a7:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 37,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2795dd7a6c42f3b:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 37,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3ed782f317357348:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 19,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40393db7130472d9:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 19,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8db0899dc91cc22c:1",
            "primaryLocationStartColumnFingerprint": "18"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 329,
                  "startColumn": 38,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "91544d5f95b5998e:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 324,
                  "startColumn": 37,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b0997260e7d45450:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 319,
                  "startColumn": 37,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f187cedb08a78a34:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 46,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41982cee9f6747b3:1",
            "primaryLocationStartColumnFingerprint": "41"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 86,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f77a55986c579d8:1",
            "primaryLocationStartColumnFingerprint": "81"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator!=' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dd047f7a8f14889b:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2deecddf1eeab196:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 6,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "111358de76ae5428:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f45938e8dc020c3e:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 77,
                  "startColumn": 6,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2d84a10e5751a2fa:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8d0bbc0058491c3:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 15,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6acbeb07d804bbe:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 21,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "25833ab9e9a641bf:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 6,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c92456db42961f2:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1a1d784cd1be094:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 6,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8fbb02c4edd9b5a:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d30da4c372e17b:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator<' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 6,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216fca402b01fca7:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'operator==' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 6,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "234f21aff5213eb1:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'makeSampleReferenceGuard' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 22,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2cb569045fb8aa47:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'deallocateSampleReferenceTracker' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 6,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "54fe10e3c70adc30:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 61,
          "rule": {
            "id": "cpp/misra/external-linkage-not-declared-in-header-file-misra",
            "index": 52
          },
          "message": {
            "text": "Externally linked function 'makeTrakerGuardFactory' not declared in header file."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 21,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "64b5146b360d4d8f:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[ProcessInput](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 5,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "85bffa6c9191bf18:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 6,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "ProcessInput"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[EmitControlFileName](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 78,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb008e07cf6a43fa:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/shm_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 6,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "EmitControlFileName"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareStopOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 515,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b2650970f82515d:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 428,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "PrepareStopOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 369,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "caa204a97398c146:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator<](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 5,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7c05ab97afce736:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 75,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 17,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8d746a579aec52b:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 107,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 17,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "77db041ebcfac7f4:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 107,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 17,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a4b0fc8f724c4e5f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 107,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 9,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f6d82e805fdc3355:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 107,
                  "endColumn": 108
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 194,
                  "startColumn": 9,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a5ad5728a7ce30b9:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 196,
                  "startColumn": 9,
                  "endLine": 198,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9c85c57a4d180e2e:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 9,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "25da6b0f0724f166:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 205,
                  "startColumn": 13,
                  "endLine": 208,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "caa46a7c157a28de:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 13,
                  "endColumn": 121
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1be861d817a6ec8a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 212,
                  "startColumn": 13,
                  "endLine": 217,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9d4a638b4295a05:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 219,
                  "startColumn": 13,
                  "endLine": 220,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1fe6b9c826d277d7:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 222,
                  "startColumn": 13,
                  "endLine": 227,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "683ad07c9e7ffb00:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 229,
                  "startColumn": 13,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fdadd737ea9270ef:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 248,
                  "startColumn": 13,
                  "endLine": 256,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f842378512889a57:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 260,
                  "startColumn": 18,
                  "endLine": 280,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fedb5637c2d03db0:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 262,
                  "startColumn": 13,
                  "endLine": 270,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f84d4c191ef11025:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 272,
                  "startColumn": 13,
                  "endLine": 280,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d4d9b5d087a3491a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[FindNumberOfTracingSlots](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 13,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae86e01374a329b:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 171,
                  "startColumn": 13,
                  "endColumn": 14
                }
              },
              "message": {
                "text": "FindNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 82,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3a4f149bfef93325:1",
            "primaryLocationStartColumnFingerprint": "73"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 83,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d20c14177b6fb51f:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 62,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e31b23017e3251f3:1",
            "primaryLocationStartColumnFingerprint": "57"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 489,
                  "startColumn": 71,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff1d2399104af52:1",
            "primaryLocationStartColumnFingerprint": "66"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1387,
                  "startColumn": 50,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e62367e70d3d9:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 642,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "43a14042d56318c3:1",
            "primaryLocationStartColumnFingerprint": "51"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1308,
                  "startColumn": 32,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6b21f705d4c3da93:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1298,
                  "startColumn": 32,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7523a387c6214e0:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1288,
                  "startColumn": 32,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "732859c42f107e9a:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 50,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6e33774c242bde7b:1",
            "primaryLocationStartColumnFingerprint": "45"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 891,
                  "startColumn": 87,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d2a066e7c3b9d8a0:1",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 875,
                  "startColumn": 48,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6026f0c4eb44ccc7:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 746,
                  "startColumn": 67,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3cbcb8c5b1949b2c:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 83,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dc830fe230515a10:1",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 434,
                  "startColumn": 55,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dd3ccbaf0773d5dd:1",
            "primaryLocationStartColumnFingerprint": "50"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 61,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd00130ca5402bb0:1",
            "primaryLocationStartColumnFingerprint": "56"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_method.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 124,
                  "startColumn": 70,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1ad4814435a6ea20:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 71,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "654e18f84ef7873a:1",
            "primaryLocationStartColumnFingerprint": "62"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 239,
                  "startColumn": 61,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fdec72903a0a7686:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing_data.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 83,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cbf00790589a24cf:1",
            "primaryLocationStartColumnFingerprint": "78"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 11,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fa90047f54403bca:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 7,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "30772275c8bc1488:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 60,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d100d6c898e6e6cf:1",
            "primaryLocationStartColumnFingerprint": "55"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 100,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41e0f6e7e084a180:1",
            "primaryLocationStartColumnFingerprint": "95"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/common_event_tracing.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 96,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bf6d0eea3d29e8e8:1",
            "primaryLocationStartColumnFingerprint": "72"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 52,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "926a01af9be8f5d4:2",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 52,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "926a01af9be8f5d4:1",
            "primaryLocationStartColumnFingerprint": "47"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "558e765817558c47:2",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 152,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "558e765817558c47:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'UserIdentifier' to 'int64_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 224,
                  "startColumn": 34,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8a4118ed5783e096:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const signed long &' to 'long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 31,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "939420bd6496e68f:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint16_t' to 'const size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 79,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "45b0544179d94c1e:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 47,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ac43d100bc9425b:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint16_t' to 'key_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping_entry.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 53,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "751e6278c5cd8a89:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'SlotIndexType' to 'const size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "startColumn": 45,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d0450dce7414afdb:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'SlotIndexType' to 'const size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/event_data_control.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 45,
                  "startColumn": 24,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3be8bfdd0f47e774:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 33,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "443270166d45a375:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/offered_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 33,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "153390af62c7ab73:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned int' to 'const unsigned short'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 405,
                  "startColumn": 116,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2001c1cdde340c38:1",
            "primaryLocationStartColumnFingerprint": "107"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'const size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_event_properties.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 44,
                  "startColumn": 58,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "abcd3308f7944b43:1",
            "primaryLocationStartColumnFingerprint": "49"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint16_t' to 'const size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 28,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d8d508a5f914d7a3:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const unsigned char &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 675,
                  "startColumn": 76,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "98009ee7b5f38bf8:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const unsigned char &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 681,
                  "startColumn": 40,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "750213f017fb2f4d:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned short &&' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 653,
                  "startColumn": 84,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28d20192ff82c8f5:1",
            "primaryLocationStartColumnFingerprint": "75"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned short &&' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 661,
                  "startColumn": 48,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8b0829896d0e4d1:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned int' to 'const size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 724,
                  "startColumn": 21,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "755acb8c156c8ba6:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned int' to 'const size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 709,
                  "startColumn": 21,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f423c98165c88618:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 21,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6b01610ded13457:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 68,
                  "startColumn": 21,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b4707084373439b1:1",
            "primaryLocationStartColumnFingerprint": "16"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'TransactionLogIndex' to 'const size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_set.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 56,
                  "startColumn": 31,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "308fc44f056d78e4:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const unsigned char &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 75,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc06adbc4b42f078:1",
            "primaryLocationStartColumnFingerprint": "66"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned short' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 42,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ca2b253bfdd035d2:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'TracingSlotSizeType' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 99,
                  "startColumn": 73,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b751aca506e4f701:1",
            "primaryLocationStartColumnFingerprint": "31"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned int' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 100,
                  "startColumn": 42,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "57f9ab74eeabf08:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned char' to 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 68,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "55"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned char' to 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 89,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3b30d6c982c0f734:1",
            "primaryLocationStartColumnFingerprint": "76"
          }
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'poll' points/refers to a non-const type 'pollfd' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 84,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "414db9a12406d546:1",
            "primaryLocationStartColumnFingerprint": "79"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 75,
                  "endColumn": 76
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'entries_end' points/refers to a non-const type 'ApplicationIdPidMappingEntry' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 77,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ab306cc1aa1d3bf:1",
            "primaryLocationStartColumnFingerprint": "72"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/application_id_pid_mapping.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 22,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'connection' points/refers to a non-const type 'IServerConnection' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 243,
                  "startColumn": 75,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1e65b566216bc61d:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 243,
                  "startColumn": 31,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'argv' points/refers to a non-const type 'const char *' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 81,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ec17c43ae01d3628:1",
            "primaryLocationStartColumnFingerprint": "80"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/runtime_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'slot' points/refers to a non-const type 'TransactionLogSlot' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 61,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "116da664c25d1838:1",
            "primaryLocationStartColumnFingerprint": "60"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/transaction_log_local_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 6,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Copy assignment operator on type [OffsetPtr<PointedType>](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 436,
                  "startColumn": 6,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "75c757c8c18ba2e3:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<PointedType>"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Copy assignment operator on type [OffsetPtr<PointedType>](1) should be lvalue-qualified.\nCopy assignment operator on type [OffsetPtr<byte>](2) should be lvalue-qualified.\nCopy assignment operator on type [OffsetPtr<TransactionLogSlot>](3) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 436,
                  "startColumn": 30,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "75c757c8c18ba2e3:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<PointedType>"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<byte>"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<TransactionLogSlot>"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Copy assignment operator on type [CopyableAtomic<T>](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 21,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "51f32e4d0fa12eb9:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/util/copyable_atomic.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 7,
                  "endColumn": 21
                }
              },
              "message": {
                "text": "CopyableAtomic<T>"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [SampleReferenceGuard](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 23,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8555ed639c541287:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_reference_tracker.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 133,
                  "startColumn": 7,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "SampleReferenceGuard"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [SlotDecrementer](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 18,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "224a413af80196c:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_decrementer.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "SlotDecrementer"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [SampleAllocateeGuard](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_guard.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 23,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ddc55c07c79f8530:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/sample_allocatee_guard.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 25,
                  "startColumn": 7,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "SampleAllocateeGuard"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [GenericProxy](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 126,
                  "startColumn": 15,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff2b85df0de507e3:1",
            "primaryLocationStartColumnFingerprint": "14"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 7,
                  "endColumn": 19
                }
              },
              "message": {
                "text": "GenericProxy"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [TracingRuntimeAtomicState](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 28,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "785a9615e27d9446:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 7,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "TracingRuntimeAtomicState"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [ProxyWrapperClass<Interface>](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 367,
                  "startColumn": 24,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44cd77d42a535154:1",
            "primaryLocationStartColumnFingerprint": "19"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 328,
                  "startColumn": 7,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "ProxyWrapperClass<Interface>"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Move assignment operator on type [SkeletonWrapperClass<Interface>](1) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 270,
                  "startColumn": 27,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d37aea3f4958733:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/traits.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 183,
                  "startColumn": 7,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "SkeletonWrapperClass<Interface>"
              }
            }
          ]
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'char' to 'bool' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/unix_domain/unix_domain_socket_address.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 36,
                  "startColumn": 17,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "900d2a5595c7a2bc:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'unknown' to 'char' uses numerical value of character.\nConversion of character type 'ServiceElementType' to 'char' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 59,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83ba3d729fed7bd7:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'ServiceElementType' to 'char' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 77,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1cea14f4bf48c815:1",
            "primaryLocationStartColumnFingerprint": "68"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'ServiceElementType' to 'char' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 79,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "575cfd92593644be:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'uint8_t' to 'char' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/trace_point_key.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 106,
                  "startColumn": 74,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "83cbb2748a2f7a97:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'value_type' to 'int' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 45,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b649725ce0980d92:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'char' to 'unsigned char' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 58,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d862b6b6a986750:1",
            "primaryLocationStartColumnFingerprint": "45"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function GetLockFilePath is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 680,
                  "startColumn": 6,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c216e61f6b84af5:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function getSharedPtr is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 242,
                  "startColumn": 43,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52613df4e964fcf0:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Anonymous namespace function doesFileExist is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 6,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8108e5712796596f:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Anonymous namespace class member function ~MakeSharedEnabler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 122,
                  "startColumn": 5,
                  "endColumn": 23
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "901b9f3b375d241c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Anonymous namespace class member function MakeSharedEnabler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 14,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "14926753e3f0242:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Anonymous namespace class member function MakeSharedEnabler is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 14,
                  "endColumn": 15
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "14926753e3f0242:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProcessReadRequest is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 166,
                  "startColumn": 30,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34772edad27fec30:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function HasSomethingToRead is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 163,
                  "startColumn": 22,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9fc26777df916d8:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProcessDisconnect is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 162,
                  "startColumn": 22,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff554b21de322a65:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function ProcessInput is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 22,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "80e52d7a92211b2:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function DecrementOffset is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 660,
                  "startColumn": 6,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50fb2c60da77faad:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function IncrementOffset is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 644,
                  "startColumn": 6,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8def73b5c8ce6631:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function CopyFrom is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 276,
                  "startColumn": 59,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ff74239de1b51fc3:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Private member function AllocateQueue is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 128,
                  "startColumn": 83,
                  "endColumn": 117
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "219953a148e7a7d2:1",
            "primaryLocationStartColumnFingerprint": "82"
          }
        },
        {
          "ruleIndex": 0,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-function",
            "index": 189
          },
          "message": {
            "text": "Anonymous namespace function CalculateMemoryResourceId is not statically called, or is in an unused template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 15,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "79267b565429d3b7:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 5,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96840d5e081af24c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 385,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dea73ad87d5d09b8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 301,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8b8f2a1b2a228d8:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 1,
          "rule": {
            "id": "cpp/misra/poorly-formed-identifier",
            "index": 153
          },
          "message": {
            "text": "Identifier '__PRETTY_FUNCTION__' contains double underscores.\nIdentifier '__PRETTY_FUNCTION__' starts with underscore."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 151,
                  "startColumn": 9,
                  "endLine": 154,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6647bb74e9c0d25:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function allocate is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_resource_proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 6,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3055096abf4d6552:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1350,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1347,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 92,
                            "startColumn": 70,
                            "endColumn": 75
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 79,
                            "startColumn": 6,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 9,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to PerformBoundsCheck [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_resource_proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 52,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "allocate [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 6,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c43e07d84468a8c:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction UpdateKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 49,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c43e07d84468a8c:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "UpdateKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 6,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "387e4a605844181:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction RemoveKnownRegion is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 49,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "387e4a605844181:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1862,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1032,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1140,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1139,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1441,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 991,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "__assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1398,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __assign_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1394,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1082,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1080,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 27,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to operator= [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 183,
                            "startColumn": 59,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "RemoveKnownRegion [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ClearKnownRegions is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction ClearKnownRegions is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 6,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aa6f7eace94dd73e:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 216,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 220,
                            "startColumn": 47,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 216,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 220,
                            "startColumn": 47,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ClearKnownRegions is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction ClearKnownRegions is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 210,
                  "startColumn": 49,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aa6f7eace94dd73e:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 216,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 220,
                            "startColumn": 47,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 6,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 216,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 220,
                            "startColumn": 47,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 210,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "ClearKnownRegions [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetBoundsFromAddress is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction GetBoundsFromAddress is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 236,
                  "startColumn": 6,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af0388531ceb1b6b:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 236,
                            "startColumn": 6,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "GetBoundsFromAddress [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 236,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "GetBoundsFromAddress [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetBoundsFromAddress is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction GetBoundsFromAddress is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 236,
                  "startColumn": 49,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af0388531ceb1b6b:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 236,
                            "startColumn": 6,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "GetBoundsFromAddress [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 236,
                            "startColumn": 49,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "GetBoundsFromAddress [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetSize is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction GetSize is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 8,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "767a0b20292783f8:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 282,
                            "startColumn": 8,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "GetSize [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 282,
                            "startColumn": 51,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "GetSize [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetSize is declared noexcept(true) but can throw exceptions of type std::out_of_range.\nFunction GetSize is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "startColumn": 51,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "767a0b20292783f8:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 282,
                            "startColumn": 8,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "GetSize [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 250,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 248,
                            "startColumn": 71,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/memory_region_map.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 282,
                            "startColumn": 51,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "GetSize [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function AllocateInTypedMemory is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction AllocateInTypedMemory is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1031,
                  "startColumn": 6,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "801aed09b50a6b88:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 92,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1031,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "AllocateInTypedMemory [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 92,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1031,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "AllocateInTypedMemory [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Open is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction Open is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 420,
                  "startColumn": 79,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5b216a61d151ea7f:1",
            "primaryLocationStartColumnFingerprint": "78"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 74,
                            "endColumn": 79
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 196,
                            "startColumn": 19,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "GetShmObjectStatInfo [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 632,
                            "startColumn": 30,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to GetShmObjectStatInfo [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 995,
                            "startColumn": 55,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 990,
                            "startColumn": 6,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "acquireLockFile [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 621,
                            "startColumn": 34,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to acquireLockFile [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1359,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1356,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 233,
                            "startColumn": 63,
                            "endColumn": 68
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 196,
                            "startColumn": 19,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 632,
                            "startColumn": 30,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1359,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1356,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 516,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 514,
                            "startColumn": 33,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 56,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 196,
                            "startColumn": 19,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 632,
                            "startColumn": 30,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to GetShmObjectStatInfo [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 616,
                            "startColumn": 6,
                            "endColumn": 58
                          }
                        },
                        "message": {
                          "text": "acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 611,
                            "startColumn": 18,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to acquireLockAndOpenSharedMemory [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 601,
                            "startColumn": 35,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 427,
                            "startColumn": 35,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to OpenImpl [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 420,
                            "startColumn": 79,
                            "endColumn": 105
                          }
                        },
                        "message": {
                          "text": "Open [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetLockFilePath is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction GetLockFilePath is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 680,
                  "startColumn": 6,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c216e61f6b84af5:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 682,
                            "startColumn": 12,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 680,
                            "startColumn": 6,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "GetLockFilePath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 682,
                            "startColumn": 12,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/shared_memory_resource.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 680,
                            "startColumn": 6,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "GetLockFilePath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ClientConnection is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f9680a0d3df39bff:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1423,
                            "startColumn": 13,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1420,
                            "startColumn": 61,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 30,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 38,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "ClientConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 978,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 975,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 43,
                            "startColumn": 7,
                            "endColumn": 118
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 38,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "ClientConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 740,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1133,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1129,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 7,
                            "endLine": 57,
                            "endColumn": 92
                          }
                        },
                        "message": {
                          "text": "call to vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/client_connection.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 38,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "ClientConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RegisterPosixEndpoint is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 299,
                  "startColumn": 6,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eca57190347d10af:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1479,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1473,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 333,
                            "startColumn": 25,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 299,
                            "startColumn": 6,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "RegisterPosixEndpoint [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1095,
                            "startColumn": 53,
                            "endColumn": 64
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1090,
                            "startColumn": 61,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "__append [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1750,
                            "startColumn": 11,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __append [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1747,
                            "startColumn": 61,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "resize [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 306,
                            "startColumn": 31,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to resize [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 299,
                            "startColumn": 6,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "RegisterPosixEndpoint [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ~ServerConnection is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "49febc31ec3b2475:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1350,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1347,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1383,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1381,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 291,
                            "startColumn": 13,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 282,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "~ServerConnection [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ProcessInput is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 149,
                  "startColumn": 6,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "472cfdfe253e4fd9:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1350,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1347,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1383,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1381,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 164,
                            "startColumn": 35,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 149,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "ProcessInput [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1350,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1347,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1383,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1381,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 31,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 149,
                            "startColumn": 6,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "ProcessInput [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function QnxDispatchServer is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 303,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc731e7063eeba17:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 978,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 975,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 308,
                            "startColumn": 7,
                            "endColumn": 118
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 303,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "QnxDispatchServer [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ServerConnection is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f21e17d7c7c33e31:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1423,
                            "startColumn": 13,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1420,
                            "startColumn": 61,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 28,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 30,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "ServerConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 740,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1133,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1129,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 40,
                            "startColumn": 7,
                            "endColumn": 102
                          }
                        },
                        "message": {
                          "text": "call to vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 30,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "ServerConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1423,
                            "startColumn": 13,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1420,
                            "startColumn": 61,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 49,
                            "startColumn": 32,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to reserve [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 30,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "ServerConnection [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ToString is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction ToString is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 13,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6f2b3a6f00afa7e:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 32,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 59,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "ToString [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 32,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 59,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "ToString [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 32,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 59,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "ToString [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 32,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 59,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "ToString [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function CopyNodeIdentifiers is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 284,
                  "startColumn": 42,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "36be39942246c668:1",
            "primaryLocationStartColumnFingerprint": "37"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 309,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 42,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "CopyNodeIdentifiers [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function NotifyEventRemote is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 874,
                  "startColumn": 6,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ad77bb0b54455:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 908,
                            "startColumn": 62,
                            "endColumn": 64
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 874,
                            "startColumn": 6,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "NotifyEventRemote [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RegisterEventNotificationExistenceChangedCallback is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1467,
                  "startColumn": 6,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d09b91fadf08e679:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1788,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 959,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1495,
                            "startColumn": 25,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "call to __construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 761,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 1740,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 1738,
                            "startColumn": 54,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1472,
                            "startColumn": 37,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1467,
                            "startColumn": 6,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "RegisterEventNotificationExistenceChangedCallback [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RegisterEventNotification is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RegisterEventNotification is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1039,
                  "startColumn": 51,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7407150d38e3e0f7:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1479,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1473,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1061,
                            "startColumn": 24,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1039,
                            "startColumn": 51,
                            "endColumn": 107
                          }
                        },
                        "message": {
                          "text": "RegisterEventNotification [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1479,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1473,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1066,
                            "startColumn": 30,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1039,
                            "startColumn": 51,
                            "endColumn": 107
                          }
                        },
                        "message": {
                          "text": "RegisterEventNotification [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1479,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1473,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1061,
                            "startColumn": 24,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1039,
                            "startColumn": 51,
                            "endColumn": 107
                          }
                        },
                        "message": {
                          "text": "RegisterEventNotification [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1479,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1473,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1066,
                            "startColumn": 30,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 1039,
                            "startColumn": 51,
                            "endColumn": 107
                          }
                        },
                        "message": {
                          "text": "RegisterEventNotification [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function MessagePassingServiceInstance is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 209,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "46d5bf03d73416:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 253,
                            "startColumn": 9,
                            "endColumn": 116
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 209,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "MessagePassingServiceInstance [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 34,
                            "startColumn": 47,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 15,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 7,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 209,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "MessagePassingServiceInstance [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 305,
                            "startColumn": 56,
                            "endLine": 306,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 303,
                            "startColumn": 34,
                            "endColumn": 99
                          }
                        },
                        "message": {
                          "text": "CreateSendMessageWithReplyCallback [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 285,
                            "startColumn": 54,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to CreateSendMessageWithReplyCallback [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 209,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "MessagePassingServiceInstance [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ~TypeErasedCallQueue is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9d37280b3041179:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 211,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 97,
                            "startColumn": 71,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "call to get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "~TypeErasedCallQueue [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 211,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 101,
                            "startColumn": 70,
                            "endColumn": 73
                          }
                        },
                        "message": {
                          "text": "call to get [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/methods/type_erased_call_queue.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 93,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "~TypeErasedCallQueue [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function CopyNodeIdentifiers is declared noexcept(true) but can throw exceptions of type std::out_of_range."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 284,
                  "startColumn": 42,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "36be39942246c668:1",
            "primaryLocationStartColumnFingerprint": "37"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 249,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 247,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 244,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_out_of_range [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/array"
                          },
                          "region": {
                            "startLine": 242,
                            "startColumn": 65,
                            "endColumn": 66
                          }
                        },
                        "message": {
                          "text": "at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 309,
                            "startColumn": 33,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to at [out_of_range]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 42,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "CopyNodeIdentifiers [out_of_range]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ToString is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction ToString is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 13,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8e653f9fc551b7ab:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 40,
                            "startColumn": 13,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "ToString [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 43,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "ToString [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 40,
                            "startColumn": 13,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "ToString [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 43,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/quality_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "ToString [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 21,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "772567afba3287d1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 61,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 58,
                            "startColumn": 21,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_id.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 58,
                            "startColumn": 21,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetServiceInstanceExistenceMarkerFilePath is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction GetServiceInstanceExistenceMarkerFilePath is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 63,
                  "startColumn": 13,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ba8228dbe5c4779:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 66,
                            "startColumn": 27,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 63,
                            "startColumn": 13,
                            "endColumn": 81
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceExistenceMarkerFilePath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 66,
                            "startColumn": 57,
                            "endColumn": 78
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 63,
                            "startColumn": 13,
                            "endColumn": 81
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceExistenceMarkerFilePath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 66,
                            "startColumn": 27,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 63,
                            "startColumn": 13,
                            "endColumn": 81
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceExistenceMarkerFilePath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 66,
                            "startColumn": 57,
                            "endColumn": 78
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 63,
                            "startColumn": 13,
                            "endColumn": 81
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceExistenceMarkerFilePath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetServiceInstanceUsageMarkerFilePath is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction GetServiceInstanceUsageMarkerFilePath is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 72,
                  "startColumn": 13,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "27f4a06e63286cf4:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 75,
                            "startColumn": 27,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 72,
                            "startColumn": 13,
                            "endColumn": 77
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceUsageMarkerFilePath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 75,
                            "startColumn": 57,
                            "endColumn": 78
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 72,
                            "startColumn": 13,
                            "endColumn": 77
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceUsageMarkerFilePath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 75,
                            "startColumn": 27,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 72,
                            "startColumn": 13,
                            "endColumn": 77
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceUsageMarkerFilePath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 75,
                            "startColumn": 57,
                            "endColumn": 78
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 72,
                            "startColumn": 13,
                            "endColumn": 77
                          }
                        },
                        "message": {
                          "text": "GetServiceInstanceUsageMarkerFilePath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetLolaPartialRestartDirectoryPath is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction GetLolaPartialRestartDirectoryPath is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 13,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d257eb7573ccb166:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 12,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 81,
                            "startColumn": 13,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "GetLolaPartialRestartDirectoryPath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 42,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 81,
                            "startColumn": 13,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "GetLolaPartialRestartDirectoryPath [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 12,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 81,
                            "startColumn": 13,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "GetLolaPartialRestartDirectoryPath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 42,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/partial_restart_path_builder.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 81,
                            "startColumn": 13,
                            "endColumn": 74
                          }
                        },
                        "message": {
                          "text": "GetLolaPartialRestartDirectoryPath [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction end is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 165,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c5d73854cbce511d:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 424,
                            "startColumn": 12,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 422,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 21,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to end [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "end [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ExecutePartialRestartLogic is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 21,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4d9d1d7368d2e34b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 182,
                            "startColumn": 21,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 180,
                            "startColumn": 17,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 230,
                            "startColumn": 26,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "call to GetBindingRuntime [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 223,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ExecutePartialRestartLogic [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ServiceDiscoveryClient is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89f5533a56a51cdc:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/stop_token/stop_source.hpp"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 28,
                            "endColumn": 64
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/stop_token/stop_source.hpp"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "stop_source [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result.h"
                          },
                          "region": {
                            "startLine": 47,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "call to stop_source [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result.h"
                          },
                          "region": {
                            "startLine": 47,
                            "startColumn": 5,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "TaskResult [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 104,
                            "startColumn": 7,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TaskResult [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 89,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ServiceDiscoveryClient [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/stop_token/stop_source.hpp"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 28,
                            "endColumn": 64
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/stop_token/stop_source.hpp"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "stop_source [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result_base.h"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "call to stop_source [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result_base.h"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 5,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "TaskResultBase [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result.h"
                          },
                          "region": {
                            "startLine": 47,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "call to TaskResultBase [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/concurrency/task_result.h"
                          },
                          "region": {
                            "startLine": 47,
                            "startColumn": 5,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "TaskResult [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 104,
                            "startColumn": 7,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TaskResult [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 89,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "ServiceDiscoveryClient [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function TransferSearchRequests is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction TransferSearchRequests is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 284,
                  "startColumn": 6,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63339000aea52f3:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 63,
                            "endColumn": 68
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 6,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 363,
                            "startColumn": 37,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 839,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 837,
                            "startColumn": 95,
                            "endColumn": 96
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 50,
                            "startColumn": 99,
                            "endColumn": 104
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/known_instances_container.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 6,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 364,
                            "startColumn": 38,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to Remove [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 839,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 837,
                            "startColumn": 95,
                            "endColumn": 96
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 97,
                            "endColumn": 102
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 28,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "LolaServiceInstanceIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 629,
                            "startColumn": 28,
                            "endColumn": 111
                          }
                        },
                        "message": {
                          "text": "call to LolaServiceInstanceIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 625,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 366,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to EraseWatch [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1788,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 959,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1495,
                            "startColumn": 25,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "call to __construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 761,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 12,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 820,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1143,
                            "startColumn": 14,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 770,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1070,
                            "startColumn": 3,
                            "endColumn": 9
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1068,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "unordered_set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 67
                          }
                        },
                        "message": {
                          "text": "call to unordered_set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 331,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequest [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 326,
                            "startColumn": 9,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequest [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 322,
                            "startColumn": 6,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "TransferObsoleteSearchRequests [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 286,
                            "startColumn": 5,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to TransferObsoleteSearchRequests [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 6,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "TransferSearchRequests [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function operator() is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction operator() is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 113,
                  "startColumn": 64,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4462456455c5cba2:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 839,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 837,
                            "startColumn": 95,
                            "endColumn": 96
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 95,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 150,
                            "startColumn": 6,
                            "endColumn": 32
                          }
                        },
                        "message": {
                          "text": "GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 437,
                            "startColumn": 21,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSearchPathForIdentifier [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1350,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1347,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 511,
                            "startColumn": 16,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/result/details/expected/expected.h"
                          },
                          "region": {
                            "startLine": 509,
                            "startColumn": 32,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 804,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 784,
                            "startColumn": 6,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 508,
                            "startColumn": 13,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to OnInstanceDirectoryCreated [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 488,
                            "startColumn": 6,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 446,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleCreationEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1467,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1461,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 416,
                            "startColumn": 29,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1467,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1461,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 416,
                            "startColumn": 29,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 373,
                            "startColumn": 6,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "HandleEvents [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 131,
                            "startColumn": 13,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to HandleEvents [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 113,
                            "startColumn": 64,
                            "endColumn": 65
                          }
                        },
                        "message": {
                          "text": "operator() [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 14,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b2c925451cf45e2:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 138,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 14,
                            "endColumn": 108
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 139,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 14,
                            "endColumn": 108
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 138,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 99,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 139,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 99,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 134,
                  "startColumn": 99,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b2c925451cf45e2:1",
            "primaryLocationStartColumnFingerprint": "98"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 138,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 14,
                            "endColumn": 108
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 139,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 14,
                            "endColumn": 108
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 138,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 99,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 138,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 134,
                            "startColumn": 99,
                            "endColumn": 100
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 6,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "770350994f26d69f:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 66,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 67,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_version_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 62,
                            "startColumn": 6,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Serialize is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 6,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d6e92e6d1707d339:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 68,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 6,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 69,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 6,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1786,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1021,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1529,
                            "startColumn": 8,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/map"
                          },
                          "region": {
                            "startLine": 1525,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 70,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to operator[] [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_identifier_type.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 6,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "Serialize [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function SetServiceElementTracingEnabled is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 6,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f784cfa1507579db:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1788,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 959,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1495,
                            "startColumn": 25,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "call to __construct_node_hash [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 761,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 12,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 820,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1143,
                            "startColumn": 14,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 770,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1099,
                            "startColumn": 3,
                            "endColumn": 9
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_set"
                          },
                          "region": {
                            "startLine": 1098,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "unordered_set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 78,
                            "startColumn": 13,
                            "endColumn": 81
                          }
                        },
                        "message": {
                          "text": "call to unordered_set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 70,
                            "startColumn": 6,
                            "endColumn": 59
                          }
                        },
                        "message": {
                          "text": "SetServiceElementTracingEnabled [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function CrossCheckServiceInstancesToTypes is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 91,
                  "startColumn": 21,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9b634b81769e2f1:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1368,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1365,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1396,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1394,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 17,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1368,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1365,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1396,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1394,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 117,
                            "startColumn": 13,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1339,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1336,
                            "startColumn": 86,
                            "endColumn": 87
                          }
                        },
                        "message": {
                          "text": "__generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1368,
                            "startColumn": 10,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to __generic_get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1365,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1396,
                            "startColumn": 10,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1394,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 17,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to get [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 21,
                            "endColumn": 69
                          }
                        },
                        "message": {
                          "text": "CrossCheckServiceInstancesToTypes [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function GetElementNamesOfServiceType is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 28,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "13b238c753f96d1e:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1552,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1549,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "__throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1560,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1558,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 237,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 176,
                            "startColumn": 28,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "GetElementNamesOfServiceType [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function HasLolaServiceDeployment is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 21,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a0dad30309fc1853:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1552,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1549,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "__throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1560,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1558,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 157,
                            "startColumn": 13,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/configuration.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 145,
                            "startColumn": 21,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "HasLolaServiceDeployment [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function RegisterWithGenericTraceApi is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction RegisterWithGenericTraceApi is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b14a2f3471ef408:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 971,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 968,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 86,
                            "startColumn": 48,
                            "endColumn": 111
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "RegisterWithGenericTraceApi [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 971,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 968,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 86,
                            "startColumn": 48,
                            "endColumn": 111
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "RegisterWithGenericTraceApi [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function TracingRuntime is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c37d0206b48bdef9:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 279,
                            "startColumn": 20,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 276,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "allocate_array [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 125,
                            "startColumn": 35,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to allocate_array [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 124,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "NonRelocatableVector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/dynamic_array.h"
                          },
                          "region": {
                            "startLine": 77,
                            "startColumn": 11,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to NonRelocatableVector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/dynamic_array.h"
                          },
                          "region": {
                            "startLine": 76,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "DynamicArray [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 70,
                            "startColumn": 7,
                            "endColumn": 63
                          }
                        },
                        "message": {
                          "text": "call to DynamicArray [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "TracingRuntime [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 34,
                            "startColumn": 47,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 15,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 74,
                            "startColumn": 7,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 64,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "TracingRuntime [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function StoreInstanceIdentifier is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 280,
                  "startColumn": 6,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d66dadaa9c50ded8:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1764,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 956,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1540,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 797,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2067,
                            "startColumn": 21,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2066,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "emplace [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 284,
                            "startColumn": 47,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to emplace [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 280,
                            "startColumn": 6,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "StoreInstanceIdentifier [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function StoreUserCallback is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 6,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "618d755ffe73fe61:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 43,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 6,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "StoreUserCallback [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ~ServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_variant_access.\nFunction ~ServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction ~ServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ae26dbc34b8eb263:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1552,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1549,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "__throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1560,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1558,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 160,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 13,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "GetBindingType [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 293,
                            "startColumn": 81,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "call to GetBindingType [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 289,
                            "startColumn": 6,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "GetServiceDiscoveryClient [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 195,
                            "startColumn": 13,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to GetServiceDiscoveryClient [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 173,
                            "startColumn": 20,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "StopFindService [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 29,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to StopFindService [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 48,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "~ServiceDiscovery [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1467,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1461,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 39,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to push_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 173,
                            "startColumn": 20,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "StopFindService [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 29,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to StopFindService [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 48,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "~ServiceDiscovery [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1764,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 956,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 1540,
                            "startColumn": 23,
                            "endColumn": 39
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 797,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 812,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __emplace_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__hash_table"
                          },
                          "region": {
                            "startLine": 811,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2488,
                            "startColumn": 14,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __insert_multi [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2036,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2412,
                            "startColumn": 3,
                            "endColumn": 9
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/unordered_map"
                          },
                          "region": {
                            "startLine": 2409,
                            "startColumn": 54,
                            "endColumn": 55
                          }
                        },
                        "message": {
                          "text": "unordered_multimap [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 50,
                            "startColumn": 33,
                            "endColumn": 54
                          }
                        },
                        "message": {
                          "text": "call to unordered_multimap [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 48,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "~ServiceDiscovery [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1451,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 821,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1467,
                            "startColumn": 13,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __push_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1461,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 184,
                            "startColumn": 39,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to push_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 173,
                            "startColumn": 20,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "StopFindService [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 29,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to StopFindService [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/service_discovery.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 48,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "~ServiceDiscovery [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function SlotCollector is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction SlotCollector is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "27889f47d156e3cc:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1121,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1118,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 74,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to vector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 22,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "SlotCollector [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 740,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1121,
                            "startColumn": 5,
                            "endColumn": 16
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1118,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 24,
                            "startColumn": 74,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "call to vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/slot_collector.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 22,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "SlotCollector [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction begin is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ef532dac37141c04:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 383,
                            "startColumn": 12,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 370,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 406,
                            "startColumn": 18,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to data [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 404,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 146,
                            "startColumn": 21,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to begin [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "begin [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function cend is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction cend is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "11dca305bfe3c1c3:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 827,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 825,
                            "startColumn": 100,
                            "endColumn": 101
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 568,
                            "startColumn": 79,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 550,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 257,
                            "startColumn": 16,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetPointerWithBoundsCheck [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/memory/shared/offset_ptr.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 254,
                            "startColumn": 13,
                            "endColumn": 14
                          }
                        },
                        "message": {
                          "text": "operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 71,
                            "startColumn": 25,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to operator-> [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 64,
                            "startColumn": 16,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 482,
                            "startColumn": 12,
                            "endColumn": 51
                          }
                        },
                        "message": {
                          "text": "call to to_address [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 474,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 451,
                            "startColumn": 26,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to GetFirstElement [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 440,
                            "startColumn": 59,
                            "endColumn": 60
                          }
                        },
                        "message": {
                          "text": "GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 436,
                            "startColumn": 40,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to GetPastTheEndIterator [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/containers/non_relocatable_vector.h"
                          },
                          "region": {
                            "startLine": 434,
                            "startColumn": 52,
                            "endColumn": 53
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 181,
                            "startColumn": 21,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to cend [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/linear_search_map.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 179,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "cend [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function MessageForSubscriptionState is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction MessageForSubscriptionState is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 13,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c82c2b13db264762:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 18,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "MessageForSubscriptionState [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 32,
                            "startColumn": 13,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 18,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "MessageForSubscriptionState [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 29,
                            "startColumn": 13,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 18,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "MessageForSubscriptionState [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 32,
                            "startColumn": 13,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_state_machine_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 18,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "MessageForSubscriptionState [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function StopOfferEvent is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction StopOfferEvent is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 6,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7476edfc08e52d1e:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2213,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 68,
                            "startColumn": 9,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to basic_string [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 6,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "StopOfferEvent [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2114,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2113,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2207,
                            "startColumn": 5,
                            "endColumn": 25
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 2203,
                            "startColumn": 44,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "__init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 954,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to __init [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/string"
                          },
                          "region": {
                            "startLine": 951,
                            "startColumn": 55,
                            "endColumn": 56
                          }
                        },
                        "message": {
                          "text": "basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 68,
                            "startColumn": 9,
                            "endColumn": 84
                          }
                        },
                        "message": {
                          "text": "call to basic_string [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 65,
                            "startColumn": 6,
                            "endColumn": 46
                          }
                        },
                        "message": {
                          "text": "StopOfferEvent [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function ConvertUidMapToJson is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction ConvertUidMapToJson is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 14,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bab4e0f64b568cf9:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 759,
                            "startColumn": 7,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 755,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "__init_with_size [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1195,
                            "startColumn": 3,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __init_with_size [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1193,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__utility/pair.h"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to vector [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__utility/pair.h"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 25,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "pair [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 86,
                            "startColumn": 15,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to pair [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 14,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "ConvertUidMapToJson [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 740,
                            "startColumn": 7,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 738,
                            "startColumn": 60,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "__vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 759,
                            "startColumn": 7,
                            "endColumn": 18
                          }
                        },
                        "message": {
                          "text": "call to __vallocate [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 755,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "__init_with_size [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1195,
                            "startColumn": 3,
                            "endColumn": 19
                          }
                        },
                        "message": {
                          "text": "call to __init_with_size [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1193,
                            "startColumn": 56,
                            "endColumn": 57
                          }
                        },
                        "message": {
                          "text": "vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__utility/pair.h"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "call to vector [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__utility/pair.h"
                          },
                          "region": {
                            "startLine": 91,
                            "startColumn": 25,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "pair [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 86,
                            "startColumn": 15,
                            "endColumn": 17
                          }
                        },
                        "message": {
                          "text": "call to pair [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 83,
                            "startColumn": 14,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "ConvertUidMapToJson [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function OfferServiceFields is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction OfferServiceFields is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 125,
                  "startColumn": 48,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "81a7d2b35cafef64:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1489,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 824,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__emplace_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1511,
                            "startColumn": 13,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 645,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "emplace_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 22,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to emplace_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 125,
                            "startColumn": 48,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "OfferServiceFields [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1489,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 824,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__emplace_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1511,
                            "startColumn": 13,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 645,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "emplace_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 144,
                            "startColumn": 22,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to emplace_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 125,
                            "startColumn": 48,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "OfferServiceFields [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function OfferServiceEvents is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction OfferServiceEvents is declared noexcept(true) but can throw exceptions of type std::length_error."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 48,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "acfdeca68e9e9e1e:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 55,
                            "startColumn": 19,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocate_at_least.h"
                          },
                          "region": {
                            "startLine": 54,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "__allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 343,
                            "startColumn": 25,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to __allocate_at_least [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__split_buffer"
                          },
                          "region": {
                            "startLine": 338,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1489,
                            "startColumn": 51,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to __split_buffer [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 824,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__emplace_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1511,
                            "startColumn": 13,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_back_slow_path [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 645,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "emplace_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 118,
                            "startColumn": 22,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to emplace_back [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 103,
                            "startColumn": 48,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "OfferServiceEvents [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 241,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "throw ... [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/stdexcept"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 52,
                            "endColumn": 72
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 78,
                            "endColumn": 103
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 940,
                            "startColumn": 47,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "__throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1040,
                            "startColumn": 11,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_length_error [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1037,
                            "startColumn": 26,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1489,
                            "startColumn": 51,
                            "endColumn": 62
                          }
                        },
                        "message": {
                          "text": "call to __recommend [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 824,
                            "startColumn": 70,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "__emplace_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 1511,
                            "startColumn": 13,
                            "endColumn": 37
                          }
                        },
                        "message": {
                          "text": "call to __emplace_back_slow_path [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                          },
                          "region": {
                            "startLine": 645,
                            "startColumn": 7,
                            "endColumn": 8
                          }
                        },
                        "message": {
                          "text": "emplace_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 118,
                            "startColumn": 22,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to emplace_back [length_error]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 103,
                            "startColumn": 48,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "OfferServiceEvents [length_error]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Create is declared noexcept(true) but can throw exceptions of type std::bad_variant_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 65,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "400da7cb1eef1040:1",
            "primaryLocationStartColumnFingerprint": "60"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 294,
                            "startColumn": 3,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 292,
                            "endColumn": 27
                          }
                        },
                        "message": {
                          "text": "__throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1552,
                            "startColumn": 5,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_variant_access [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1549,
                            "startColumn": 84,
                            "endColumn": 85
                          }
                        },
                        "message": {
                          "text": "__throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1560,
                            "startColumn": 3,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "call to __throw_if_valueless [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/variant"
                          },
                          "region": {
                            "startLine": 1558,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 245,
                            "startColumn": 12,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to visit [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 194,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "CreateGenericSkeletonEventOrField [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endLine": 58,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to CreateGenericSkeletonEventOrField [bad_variant_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/plumbing/generic_skeleton_event_binding_factory.h",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 41,
                            "startColumn": 65,
                            "endColumn": 71
                          }
                        },
                        "message": {
                          "text": "Create [bad_variant_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function UnsetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 239,
                  "startColumn": 14,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0438c8ad07d4c22:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 302,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 273,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 252,
                            "startColumn": 5,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 239,
                            "startColumn": 14,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "UnsetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_optional_access.\nFunction SetReceiveHandler is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 206,
                  "startColumn": 14,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bc739b6551400ac9:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 238,
                            "startColumn": 6,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 213,
                            "startColumn": 5,
                            "endColumn": 36
                          }
                        },
                        "message": {
                          "text": "call to TraceSetReceiveHandler [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 10,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 830,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 229,
                            "startColumn": 9,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to make_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 56,
                            "startColumn": 16,
                            "endColumn": 50
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocation_guard.h"
                          },
                          "region": {
                            "startLine": 53,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 822,
                            "startColumn": 54,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to __allocation_guard [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/shared_ptr.h"
                          },
                          "region": {
                            "startLine": 819,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 34,
                            "startColumn": 47,
                            "endColumn": 88
                          }
                        },
                        "message": {
                          "text": "call to allocate_shared [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 33,
                            "startColumn": 14,
                            "endColumn": 15
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 15,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/safecpp/scoped_function/scope.h"
                          },
                          "region": {
                            "startLine": 31,
                            "startColumn": 5,
                            "endColumn": 6
                          }
                        },
                        "message": {
                          "text": "Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 227,
                            "startColumn": 30,
                            "endColumn": 48
                          }
                        },
                        "message": {
                          "text": "call to Scope [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 206,
                            "startColumn": 14,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "SetReceiveHandler [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function Unsubscribe is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "startColumn": 6,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b92ec79164789967:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 35,
                            "endColumn": 61
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/common_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 45,
                            "startColumn": 14,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 232,
                            "startColumn": 13,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "call to TraceData [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 203,
                            "startColumn": 6,
                            "endColumn": 22
                          }
                        },
                        "message": {
                          "text": "TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 136,
                            "startColumn": 5,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to TraceUnsubscribe [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/proxy_event_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 115,
                            "startColumn": 6,
                            "endColumn": 33
                          }
                        },
                        "message": {
                          "text": "Unsubscribe [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function StopOfferServiceInServiceDiscovery is declared noexcept(true) but can throw exceptions of type std::bad_optional_access."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 6,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1b444890b16795ed:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 165,
                            "startColumn": 75,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 267,
                            "startColumn": 3,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 265,
                            "endColumn": 28
                          }
                        },
                        "message": {
                          "text": "__throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 833,
                            "startColumn": 7,
                            "endColumn": 34
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_optional_access [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/optional"
                          },
                          "region": {
                            "startLine": 831,
                            "startColumn": 94,
                            "endColumn": 95
                          }
                        },
                        "message": {
                          "text": "value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 167,
                            "startColumn": 65,
                            "endColumn": 70
                          }
                        },
                        "message": {
                          "text": "call to value [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 85,
                            "endColumn": 86
                          }
                        },
                        "message": {
                          "text": "operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 344,
                            "startColumn": 48,
                            "endColumn": 49
                          }
                        },
                        "message": {
                          "text": "call to operator() [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__type_traits/invoke.h"
                          },
                          "region": {
                            "startLine": 342,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "__invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 28,
                            "startColumn": 10,
                            "endColumn": 23
                          }
                        },
                        "message": {
                          "text": "call to __invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__functional/invoke.h"
                          },
                          "region": {
                            "startLine": 27,
                            "endColumn": 2
                          }
                        },
                        "message": {
                          "text": "invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 214,
                            "startColumn": 32,
                            "endColumn": 43
                          }
                        },
                        "message": {
                          "text": "call to invoke [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 209,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 204,
                            "startColumn": 13,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "call to InitializeSingletonCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 198,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 133,
                            "startColumn": 18,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "call to GetSingletonWithFenceCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/utils/meyer_singleton/meyer_singleton.h"
                          },
                          "region": {
                            "startLine": 120,
                            "startColumn": 20,
                            "endColumn": 21
                          }
                        },
                        "message": {
                          "text": "GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 153,
                            "startColumn": 12,
                            "endColumn": 82
                          }
                        },
                        "message": {
                          "text": "call to GetInstanceInitializedWithCallable [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 147,
                            "startColumn": 10,
                            "endColumn": 38
                          }
                        },
                        "message": {
                          "text": "getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 137,
                            "startColumn": 16,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to getInstanceInternal [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/runtime.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 129,
                            "startColumn": 6,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 44,
                            "startColumn": 25,
                            "endColumn": 45
                          }
                        },
                        "message": {
                          "text": "call to getInstance [bad_optional_access]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/skeleton_base.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 42,
                            "startColumn": 6,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "StopOfferServiceInServiceDiscovery [bad_optional_access]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function IsTracePointEnabledInMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 6,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b207528d7576a5f7:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 70,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 116,
                            "startColumn": 37,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 98,
                            "startColumn": 6,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "IsTracePointEnabledInMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function InsertTracePointIntoMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 6,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "33c97602c584671:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 678,
                            "startColumn": 5,
                            "endColumn": 11
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 676,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 59,
                            "startColumn": 61,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 51,
                            "startColumn": 6,
                            "endColumn": 29
                          }
                        },
                        "message": {
                          "text": "InsertTracePointIntoMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 2,
          "rule": {
            "id": "cpp/misra/noexcept-function-should-not-propagate-to-the-caller",
            "index": 120
          },
          "message": {
            "text": "Function IsTracePointEnabledInMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction IsTracePointEnabledInMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction IsTracePointEnabledInMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length.\nFunction IsTracePointEnabledInMap is declared noexcept(true) but can throw exceptions of type std::bad_array_new_length."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 6,
                  "endColumn": 7
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b207528d7576a5f7:1",
            "primaryLocationStartColumnFingerprint": "5"
          },
          "codeFlows": [
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 70,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 116,
                            "startColumn": 37,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 98,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "IsTracePointEnabledInMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 70,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 116,
                            "startColumn": 37,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 98,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "IsTracePointEnabledInMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 70,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 116,
                            "startColumn": 37,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 98,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "IsTracePointEnabledInMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            },
            {
              "threadFlows": [
                {
                  "locations": [
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 174,
                            "startColumn": 3,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "throw ... [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/new"
                          },
                          "region": {
                            "startLine": 172,
                            "startColumn": 52,
                            "endColumn": 80
                          }
                        },
                        "message": {
                          "text": "__throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 121,
                            "startColumn": 7,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "call to __throw_bad_array_new_length [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator.h"
                          },
                          "region": {
                            "startLine": 119,
                            "startColumn": 90,
                            "endColumn": 91
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 269,
                            "startColumn": 16,
                            "endColumn": 24
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__memory/allocator_traits.h"
                          },
                          "region": {
                            "startLine": 268,
                            "startColumn": 3,
                            "endColumn": 4
                          }
                        },
                        "message": {
                          "text": "allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1819,
                            "startColumn": 21,
                            "endColumn": 44
                          }
                        },
                        "message": {
                          "text": "call to allocate [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1256,
                            "startColumn": 39,
                            "endColumn": 40
                          }
                        },
                        "message": {
                          "text": "__construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1805,
                            "startColumn": 25,
                            "endColumn": 41
                          }
                        },
                        "message": {
                          "text": "call to __construct_node [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1023,
                            "startColumn": 46,
                            "endColumn": 47
                          }
                        },
                        "message": {
                          "text": "__emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1109,
                            "startColumn": 12,
                            "endColumn": 42
                          }
                        },
                        "message": {
                          "text": "call to __emplace_hint_unique_key_args [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/__tree"
                          },
                          "region": {
                            "startLine": 1108,
                            "startColumn": 34,
                            "endColumn": 35
                          }
                        },
                        "message": {
                          "text": "__insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 743,
                            "startColumn": 15,
                            "endColumn": 30
                          }
                        },
                        "message": {
                          "text": "call to __insert_unique [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 741,
                            "startColumn": 30,
                            "endColumn": 31
                          }
                        },
                        "message": {
                          "text": "insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 70,
                            "endColumn": 76
                          }
                        },
                        "message": {
                          "text": "call to insert [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/set"
                          },
                          "region": {
                            "startLine": 655,
                            "startColumn": 25,
                            "endColumn": 26
                          }
                        },
                        "message": {
                          "text": "set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 116,
                            "startColumn": 37,
                            "endColumn": 52
                          }
                        },
                        "message": {
                          "text": "call to set [bad_array_new_length]"
                        }
                      }
                    },
                    {
                      "location": {
                        "physicalLocation": {
                          "artifactLocation": {
                            "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                            "uriBaseId": "%SRCROOT%"
                          },
                          "region": {
                            "startLine": 98,
                            "startColumn": 6,
                            "endColumn": 7
                          }
                        },
                        "message": {
                          "text": "IsTracePointEnabledInMap [bad_array_new_length]"
                        }
                      }
                    }
                  ]
                }
              ]
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'take_ownership' for function [score::memory::shared::LockFile::CreateOrOpen](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/lock_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 71,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9daefa25a358f46e:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/lock_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 59,
                  "startColumn": 25,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "score::memory::shared::LockFile::CreateOrOpen"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'memory_range_start' for function [score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion](1).\nUnused parameter 'memory_range_start' for function [score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 88,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c43e07d84468a8c:1",
            "primaryLocationStartColumnFingerprint": "87"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 6,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 49,
                  "endColumn": 50
                }
              },
              "message": {
                "text": "score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'memory_range_end' for function [score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion](1).\nUnused parameter 'memory_range_end' for function [score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 138,
                  "startColumn": 88,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a431663e4670b746:1",
            "primaryLocationStartColumnFingerprint": "21"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 6,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 137,
                  "startColumn": 49,
                  "endColumn": 50
                }
              },
              "message": {
                "text": "score::memory::shared::detail::MemoryRegionMapImpl<AtomicIndirectorType>::UpdateKnownRegion"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'initialize_callback' for function [score::memory::shared::SharedMemoryResource::CreateImpl](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 499,
                  "startColumn": 93,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "da9f1f7e5d5f7119:1",
            "primaryLocationStartColumnFingerprint": "25"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 498,
                  "startColumn": 35,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "score::memory::shared::SharedMemoryResource::CreateImpl"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lock_file_path' for function [score::memory::shared::(unnamed namespace)::waitForFreeLockFile](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 156,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a141a9492d19340d:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 156,
                  "startColumn": 6,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "score::memory::shared::(unnamed namespace)::waitForFreeLockFile"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'args' for function [score::memory::shared::(unnamed namespace)::CreateInstance](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 71,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cf4a2de6b26db55b:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 130,
                  "startColumn": 46,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "score::memory::shared::(unnamed namespace)::CreateInstance"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'size' for function [score::message_passing::(unnamed namespace)::FixedBufferStreamBuf::FixedBufferStreamBuf](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 64,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7221de16405667f2:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 5,
                  "endColumn": 25
                }
              },
              "message": {
                "text": "score::message_passing::(unnamed namespace)::FixedBufferStreamBuf::FixedBufferStreamBuf"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'message' for function [score::message_passing::detail::ClientConnection::TryQueueMessage](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 77,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f25aac334a4586ed:1",
            "primaryLocationStartColumnFingerprint": "76"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/client_connection.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 6,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "score::message_passing::detail::ClientConnection::TryQueueMessage"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'element_fq_id' for function [score::mw::com::impl::lola::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 101,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9ca1390add604bc:1",
            "primaryLocationStartColumnFingerprint": "100"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/element_fq_id.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'other' for function [score::memory::shared::OffsetPtr<void>::OffsetPtr](1).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<_Maxalignt>::OffsetPtr](2).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<TransactionLogSlot>::OffsetPtr](3).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<const MemoryResourceProxy>::OffsetPtr](4).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<atomic<unsigned long>>::OffsetPtr](5).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<TransactionLogNode>::OffsetPtr](6).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<pair<UniqueMethodIdentifier, TypeErasedCallQueue>>::OffsetPtr](7).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<pair<ElementFqId, OffsetPtr<void>>>::OffsetPtr](8).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<pair<ElementFqId, EventMetaInfo>>::OffsetPtr](9).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<pair<ElementFqId, EventControl>>::OffsetPtr](10).\nUnused parameter 'other' for function [score::memory::shared::OffsetPtr<ApplicationIdPidMappingEntry>::OffsetPtr](11)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 65,
                  "endColumn": 70
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdcf1af329a9986d:1",
            "primaryLocationStartColumnFingerprint": "64"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<void>::OffsetPtr"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<_Maxalignt>::OffsetPtr"
              }
            },
            {
              "id": 3,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<TransactionLogSlot>::OffsetPtr"
              }
            },
            {
              "id": 4,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<const MemoryResourceProxy>::OffsetPtr"
              }
            },
            {
              "id": 5,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<atomic<unsigned long>>::OffsetPtr"
              }
            },
            {
              "id": 6,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<TransactionLogNode>::OffsetPtr"
              }
            },
            {
              "id": 7,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<pair<UniqueMethodIdentifier, TypeErasedCallQueue>>::OffsetPtr"
              }
            },
            {
              "id": 8,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<pair<ElementFqId, OffsetPtr<void>>>::OffsetPtr"
              }
            },
            {
              "id": 9,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<pair<ElementFqId, EventMetaInfo>>::OffsetPtr"
              }
            },
            {
              "id": 10,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<pair<ElementFqId, EventControl>>::OffsetPtr"
              }
            },
            {
              "id": 11,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 412,
                  "startColumn": 25,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::memory::shared::OffsetPtr<ApplicationIdPidMappingEntry>::OffsetPtr"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'registration_no' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::UnregisterEventNotificationRemote](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1370,
                  "startColumn": 61,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4021f4f6029e3ade:2",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1368,
                  "startColumn": 6,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::UnregisterEventNotificationRemote"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'sender_node_id' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::HandleNotifyEventMsg](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 445,
                  "startColumn": 70,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5ccbb6796d5b4490:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 444,
                  "startColumn": 6,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::HandleNotifyEventMsg"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'proxy_method_instance_identifier' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1266,
                  "startColumn": 41,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dbd26511e4d041d1:1",
            "primaryLocationStartColumnFingerprint": "36"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1265,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'method_call_callback' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1267,
                  "startColumn": 47,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b5f87614bc4b47f:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1265,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'allowed_proxy_uid' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1268,
                  "startColumn": 17,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "99878d5101a7f4a6:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1265,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterMethodCallHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'skeleton_instance_identifier' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodUnsubscribedHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1247,
                  "startColumn": 38,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8cbe7b110d62fe6:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1246,
                  "startColumn": 14,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodUnsubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'unsubscribed_callback' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodUnsubscribedHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1248,
                  "startColumn": 62,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "80f2b71d10333353:1",
            "primaryLocationStartColumnFingerprint": "57"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1246,
                  "startColumn": 14,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodUnsubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'skeleton_instance_identifier' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1227,
                  "startColumn": 38,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8cbe7b110d62fa3:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1226,
                  "startColumn": 14,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'subscribed_callback' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1228,
                  "startColumn": 60,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "73c3987b526f682f:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1226,
                  "startColumn": 14,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'allowed_proxy_uids' for function [score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1229,
                  "startColumn": 49,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab53ab7d215801ee:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1226,
                  "startColumn": 14,
                  "endColumn": 85
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstance::RegisterOnServiceMethodSubscribedHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'client_quality_type' for function [score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 7,
                  "startColumn": 23,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "18c801fdd93e096e:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'config' for function [score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 8,
                  "startColumn": 21,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9a11c9f66e75de5b:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'server_factory' for function [score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 9,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6428f537c6ad465:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'client_factory' for function [score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 10,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d7f32c519b307d7:1",
            "primaryLocationStartColumnFingerprint": "40"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'executor' for function [score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 11,
                  "startColumn": 35,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "87e42bc69080c925:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance_factory.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MessagePassingServiceInstanceFactory::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'value' for function [score::mw::com::impl::lola::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 101,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6e364b733ab9cd07:1",
            "primaryLocationStartColumnFingerprint": "100"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 23,
                  "startColumn": 21,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'arg' for function [lambda expression](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 34,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6308e9eec4dc73e:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 26,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "lambda expression"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'value' for function [score::mw::com::impl::lola::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 97,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "931fd19ff3087804:1",
            "primaryLocationStartColumnFingerprint": "96"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/unique_method_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 21,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'application_id' for function [score::mw::com::impl::GlobalConfiguration::SetApplicationId](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/global_configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 47,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ed02b5740ec3e113:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/global_configuration.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 10,
                  "endColumn": 26
                }
              },
              "message": {
                "text": "score::mw::com::impl::GlobalConfiguration::SetApplicationId"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'value' for function [score::mw::com::impl::lola::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 98,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "27d1d6749fd8f18e:1",
            "primaryLocationStartColumnFingerprint": "97"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 30,
                  "startColumn": 21,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'proxy_instance_identifier' for function [score::mw::com::impl::lola::MethodResourceMap::Insert](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 62,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eb02e9d3ab6967d5:1",
            "primaryLocationStartColumnFingerprint": "61"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 6,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MethodResourceMap::Insert"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'proxy_pid' for function [score::mw::com::impl::lola::MethodResourceMap::Insert](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 44,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "34d6db90dc1ce6ef:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 6,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MethodResourceMap::Insert"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'methods_shm_resource' for function [score::mw::com::impl::lola::MethodResourceMap::Insert](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 43,
                  "startColumn": 94,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3d77a26eff900318:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 41,
                  "startColumn": 6,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::MethodResourceMap::Insert"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'method_id' for function [score::mw::com::impl::lola::Proxy::RegisterMethod](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 57,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d38eaf5de78536cd:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 6,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::Proxy::RegisterMethod"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'proxy_method' for function [score::mw::com::impl::lola::Proxy::RegisterMethod](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 81,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d38eaf5de78536cd:1",
            "primaryLocationStartColumnFingerprint": "80"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 6,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::Proxy::RegisterMethod"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'file_path' for function [score::mw::com::impl::lola::(unnamed namespace)::PlaceSharedLockOnUsageMarkerFileWithRetry](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 116,
                  "startColumn": 60,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9afe70e50eac4ce3:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::(unnamed namespace)::PlaceSharedLockOnUsageMarkerFileWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 42,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216fca402b01fca7:1",
            "primaryLocationStartColumnFingerprint": "41"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 73,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216fca402b01fca7:1",
            "primaryLocationStartColumnFingerprint": "72"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 148,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 34,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8fbb02c4edd9b5a:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 57,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8fbb02c4edd9b5a:1",
            "primaryLocationStartColumnFingerprint": "56"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/handle_type.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'find_service_handle' for function [score::mw::com::impl::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 89,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "25833ab9e9a641bf:1",
            "primaryLocationStartColumnFingerprint": "88"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/find_service_handle.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 21,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'long_running_threads' for function [score::mw::com::impl::lola::ServiceDiscoveryClient::ServiceDiscoveryClient](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 71,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89f0310256b93afd:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::ServiceDiscoveryClient::ServiceDiscoveryClient"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'number_of_sample_slots' for function [score::mw::com::impl::LolaEventInstanceDeployment::SetNumberOfSampleSlots](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 78,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7dc0aa10fb2e20e:1",
            "primaryLocationStartColumnFingerprint": "77"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_event_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 6,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "score::mw::com::impl::LolaEventInstanceDeployment::SetNumberOfSampleSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 60,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8da45a331b4cdb8:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 13,
                  "endColumn": 23
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 101,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8da45a331b4cdb8:1",
            "primaryLocationStartColumnFingerprint": "100"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_method_instance_deployment.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 79,
                  "startColumn": 13,
                  "endColumn": 23
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 53,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d25b220b78c32d7b:1",
            "primaryLocationStartColumnFingerprint": "52"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 95,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d25b220b78c32d7b:1",
            "primaryLocationStartColumnFingerprint": "94"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 135,
                  "startColumn": 6,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 54,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89b5ae6e40452aed:1",
            "primaryLocationStartColumnFingerprint": "53"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 96,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89b5ae6e40452aed:1",
            "primaryLocationStartColumnFingerprint": "95"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/lola_service_instance_deployment.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 111,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'instance_specifier' for function [score::mw::com::impl::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 83,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9a73c78bf1ae06e:1",
            "primaryLocationStartColumnFingerprint": "82"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_identifier' for function [score::mw::com::impl::tracing::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 73,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "807fb5ab4867d18c:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::tracing::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 49,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e373cd8d2dcefbbe:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::tracing::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 86,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e373cd8d2dcefbbe:1",
            "primaryLocationStartColumnFingerprint": "85"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_identifier_view' for function [score::mw::com::impl::tracing::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 77,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8059bbb0555e2804:1",
            "primaryLocationStartColumnFingerprint": "36"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::tracing::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 53,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f61e8a2c9c84f63:1",
            "primaryLocationStartColumnFingerprint": "52"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::tracing::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 94,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1f61e8a2c9c84f63:1",
            "primaryLocationStartColumnFingerprint": "93"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 20,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'instance_specifier_view' for function [score::mw::com::impl::TracingConfiguration::IsServiceElementTracingEnabled](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 22,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "24354044af13cc86:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/tracing_configuration.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 102,
                  "startColumn": 6,
                  "endColumn": 58
                }
              },
              "message": {
                "text": "score::mw::com::impl::TracingConfiguration::IsServiceElementTracingEnabled"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 51,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9bd99a79a504594:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 90,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9bd99a79a504594:1",
            "primaryLocationStartColumnFingerprint": "89"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 18,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'handle' for function [score::mw::com::impl::EnrichedInstanceIdentifier::EnrichedInstanceIdentifier](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 58,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16d4c74bdbb2491f:1",
            "primaryLocationStartColumnFingerprint": "53"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 14,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "score::mw::com::impl::EnrichedInstanceIdentifier::EnrichedInstanceIdentifier"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'instance_id' for function [score::mw::com::impl::EnrichedInstanceIdentifier::EnrichedInstanceIdentifier](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 96,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "50102dd91650388b:1",
            "primaryLocationStartColumnFingerprint": "91"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 5,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "score::mw::com::impl::EnrichedInstanceIdentifier::EnrichedInstanceIdentifier"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_instance_identifier_view' for function [score::mw::com::impl::tracing::operator<<](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 33,
                  "startColumn": 49,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "df18a289f2158cbf:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/service_element_instance_identifier_view.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 30,
                  "endColumn": 40
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::operator<<"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lhs' for function [score::mw::com::impl::lola::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 54,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9579ebfe28cb951:1",
            "primaryLocationStartColumnFingerprint": "53"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'rhs' for function [score::mw::com::impl::lola::operator==](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 96,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9579ebfe28cb951:1",
            "primaryLocationStartColumnFingerprint": "95"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/lola_service_instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 52,
                  "startColumn": 6,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::operator=="
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_instance_identifier_view' for function [score::mw::com::impl::lola::tracing::TracingRuntime::CacheFileDescriptorForReregisteringShmObject](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 64,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a88b1287b7b91d14:2",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 213,
                  "startColumn": 6,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::tracing::TracingRuntime::CacheFileDescriptorForReregisteringShmObject"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'shm_memory_start_address' for function [score::mw::com::impl::lola::tracing::TracingRuntime::CacheFileDescriptorForReregisteringShmObject](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 216,
                  "startColumn": 17,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "eea8c140a1b5459b:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 213,
                  "startColumn": 6,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::tracing::TracingRuntime::CacheFileDescriptorForReregisteringShmObject"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'shm_memory_start_address' for function [score::mw::com::impl::lola::tracing::TracingRuntime::RegisterShmObject](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 17,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ab02a962e2cbf9a4:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 179,
                  "startColumn": 6,
                  "endColumn": 39
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::tracing::TracingRuntime::RegisterShmObject"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'offer_disambiguator' for function [score::mw::com::impl::lola::(unnamed namespace)::RemoveMatchingFlagFiles](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 96,
                  "startColumn": 60,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6d228cd483b67360:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 6,
                  "endColumn": 29
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::(unnamed namespace)::RemoveMatchingFlagFiles"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'enriched_instance_identifier' for function [score::mw::com::impl::lola::FlagFileCrawler::Crawl](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 63,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a6556f6bfe90cb34:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::FlagFileCrawler::Crawl"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'sample_meta_info' for function [score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventMetaInfo](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 929,
                  "startColumn": 92,
                  "endColumn": 108
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "667f9a2ad4f635cb:1",
            "primaryLocationStartColumnFingerprint": "32"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 928,
                  "startColumn": 16,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventMetaInfo"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'type_erased_event_data_storage' for function [score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventMetaInfo](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 930,
                  "startColumn": 66,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "41a308bc1cb80677:1",
            "primaryLocationStartColumnFingerprint": "6"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 928,
                  "startColumn": 16,
                  "endColumn": 59
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventMetaInfo"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'element_fq_id' for function [score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventControl](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 905,
                  "startColumn": 70,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f8f491cf46d2d3de:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 904,
                  "startColumn": 15,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventControl"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'element_properties' for function [score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventControl](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 906,
                  "startColumn": 89,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "76bb8ec85cd2fc72:1",
            "primaryLocationStartColumnFingerprint": "31"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 904,
                  "startColumn": 15,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::EmplaceEventControl"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'shm_size' for function [score::mw::com::impl::lola::SkeletonMemoryManager::CreateSharedMemoryForControl](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 755,
                  "startColumn": 23,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3529e9e83afb797a:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 752,
                  "startColumn": 6,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::CreateSharedMemoryForControl"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_name' for function [score::mw::com::impl::lola::SkeletonMemoryManager::GetMaxSubscribersFromConfig](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 664,
                  "startColumn": 87,
                  "endColumn": 107
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e32e017b4625622f:1",
            "primaryLocationStartColumnFingerprint": "86"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 664,
                  "startColumn": 13,
                  "endColumn": 63
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::GetMaxSubscribersFromConfig"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_name' for function [score::mw::com::impl::lola::SkeletonMemoryManager::GetNumberOfSampleSlotsFromConfig](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 642,
                  "startColumn": 92,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "719f44ba0a3dd1bb:1",
            "primaryLocationStartColumnFingerprint": "91"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 642,
                  "startColumn": 13,
                  "endColumn": 68
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::SkeletonMemoryManager::GetNumberOfSampleSlotsFromConfig"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'method_id' for function [score::mw::com::impl::lola::Skeleton::RegisterMethod](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 60,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94b7431be5ed28cd:1",
            "primaryLocationStartColumnFingerprint": "59"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 6,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::Skeleton::RegisterMethod"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'skeleton_method' for function [score::mw::com::impl::lola::Skeleton::RegisterMethod](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 87,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94b7431be5ed28cd:1",
            "primaryLocationStartColumnFingerprint": "86"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 6,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::Skeleton::RegisterMethod"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'find_service_handle' for function [score::mw::com::impl::ServiceDiscovery::StoreUserCallback](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 67,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "618d755ffe73fe61:1",
            "primaryLocationStartColumnFingerprint": "66"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/service_discovery.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 269,
                  "startColumn": 6,
                  "endColumn": 41
                }
              },
              "message": {
                "text": "score::mw::com::impl::ServiceDiscovery::StoreUserCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'memory' for function [lambda expression](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 712,
                  "startColumn": 78,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "26a34204377f4a0e:1",
            "primaryLocationStartColumnFingerprint": "69"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 712,
                  "startColumn": 15,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "lambda expression"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'handler' for function [score::mw::com::impl::lola::EventReceiveHandlerManager::Register](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 84,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a7c4835cd81bc63b:1",
            "primaryLocationStartColumnFingerprint": "83"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_helpers.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 28,
                  "startColumn": 6,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "score::mw::com::impl::lola::EventReceiveHandlerManager::Register"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'base' for function [score::mw::com::impl::GenericProxyEvent::GenericProxyEvent](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 49,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d6c5c75740ae7b51:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "score::mw::com::impl::GenericProxyEvent::GenericProxyEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'event_name' for function [score::mw::com::impl::GenericProxyEvent::GenericProxyEvent](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "startColumn": 61,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "491aad4907ad6326:1",
            "primaryLocationStartColumnFingerprint": "60"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "score::mw::com::impl::GenericProxyEvent::GenericProxyEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'proxy_binding' for function [score::mw::com::impl::GenericProxyEvent::GenericProxyEvent](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 35,
                  "startColumn": 80,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e0ad86db6a54fd3b:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 34,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "score::mw::com::impl::GenericProxyEvent::GenericProxyEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'binding' for function [score::mw::com::impl::GenericSkeletonEvent::GenericSkeletonEvent](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 89,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86d17d9a289161e9:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 24,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "score::mw::com::impl::GenericSkeletonEvent::GenericSkeletonEvent"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'trace_point_data_id' for function [score::mw::com::impl::tracing::TraceCallGetNewSamplesCallback](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 345,
                  "startColumn": 71,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f4854826558b4662:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/proxy_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 343,
                  "startColumn": 6,
                  "endColumn": 36
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::TraceCallGetNewSamplesCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_name' for function [score::mw::com::impl::GetElementFqId](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 57,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b3e342cc0e905b36:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/lola_proxy_element_building_blocks.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 27,
                  "startColumn": 19,
                  "endColumn": 33
                }
              },
              "message": {
                "text": "score::mw::com::impl::GetElementFqId"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'method_name' for function [score::mw::com::impl::ProxyMethodBindingFactoryImpl<..(..)>::Create](1).\nUnused parameter 'method_name' for function [score::mw::com::impl::ProxyMethodBindingFactoryImpl<..(..)>::Create](2)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 28,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "69c85f02ea3c5c09:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 45,
                  "endColumn": 107
                }
              },
              "message": {
                "text": "score::mw::com::impl::ProxyMethodBindingFactoryImpl<..(..)>::Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_method_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 105,
                  "startColumn": 101,
                  "endColumn": 102
                }
              },
              "message": {
                "text": "score::mw::com::impl::ProxyMethodBindingFactoryImpl<..(..)>::Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'lola_type_deployment' for function [lambda expression](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 46,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c41b89bfa6ad884:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 76,
                  "endColumn": 77
                }
              },
              "message": {
                "text": "lambda expression"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'trace_point_type' for function [score::mw::com::impl::tracing::TracingRuntime::Trace](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 513,
                  "startColumn": 57,
                  "endColumn": 73
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f52ac7bc79c882f1:1",
            "primaryLocationStartColumnFingerprint": "21"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 510,
                  "startColumn": 14,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::TracingRuntime::Trace"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'trace_point_data_id' for function [score::mw::com::impl::tracing::TracingRuntime::Trace](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 514,
                  "startColumn": 59,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c1b401a11af94f09:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 510,
                  "startColumn": 14,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::TracingRuntime::Trace"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'service_element_name' for function [score::mw::com::impl::tracing::(unnamed namespace)::GetNumberOfTracingSlots](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 55,
                  "endColumn": 75
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "398079521b044877:1",
            "primaryLocationStartColumnFingerprint": "17"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/skeleton_event_tracing.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 14,
                  "endColumn": 15
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::(unnamed namespace)::GetNumberOfTracingSlots"
              }
            }
          ]
        },
        {
          "ruleIndex": 4,
          "rule": {
            "id": "cpp/misra/unused-parameter-misra-cpp",
            "index": 191
          },
          "message": {
            "text": "Unused parameter 'trace_point_data_id' for function [score::mw::com::impl::tracing::(unnamed namespace)::CreateMetaInfo](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 176,
                  "startColumn": 59,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "276209fe4af25aa8:1",
            "primaryLocationStartColumnFingerprint": "54"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 173,
                  "startColumn": 35,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "score::mw::com::impl::tracing::(unnamed namespace)::CreateMetaInfo"
              }
            }
          ]
        },
        {
          "ruleIndex": 9,
          "rule": {
            "id": "cpp/misra/overriding-shall-specify-different-default-arguments",
            "index": 143
          },
          "message": {
            "text": "Overriding function does not have the same default parameters as [overridden function](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 46,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "add7c4c6960d3c82:1",
            "primaryLocationStartColumnFingerprint": "45"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/i_server.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 58,
                  "endColumn": 72
                }
              },
              "message": {
                "text": "overridden function"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [GetCerrLogger](1) where the type alias used is '[LoggingCallback](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 17,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cdab4ae2898a7439:1",
            "primaryLocationStartColumnFingerprint": "16"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 60,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "GetCerrLogger"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 7,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "LoggingCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [AttachConnection](1) where the type alias used is '[expected_blank](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 241,
                  "startColumn": 53,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "204dbb3097d47dc0:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 647,
                  "startColumn": 42,
                  "endColumn": 77
                }
              },
              "message": {
                "text": "AttachConnection"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "expected_blank"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [CreateSearchPath](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 66,
                  "startColumn": 17,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a092efa37ddd85bd:1",
            "primaryLocationStartColumnFingerprint": "12"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 244,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "CreateSearchPath"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Allocate](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 34,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "944c510579ef8a45:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 38,
                  "endColumn": 46
                }
              },
              "message": {
                "text": "Allocate"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Create](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 47,
                  "startColumn": 35,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7b6e33f862bbf8e2:1",
            "primaryLocationStartColumnFingerprint": "34"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 58,
                  "startColumn": 46,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "Create"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [proxy_event_binding](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 79,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63b4aea541f992a3:1",
            "primaryLocationStartColumnFingerprint": "47"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/proxy_event_base.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 62,
                  "startColumn": 96,
                  "endColumn": 115
                }
              },
              "message": {
                "text": "proxy_event_binding"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 11,
          "rule": {
            "id": "cpp/misra/type-aliases-declaration",
            "index": 175
          },
          "message": {
            "text": "Declaration entry has a different type alias than [Allocate](1) where the type alias used is '[Result](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 38,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ecbd12a151d9c306:1",
            "primaryLocationStartColumnFingerprint": "33"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_skeleton_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 34,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "Allocate"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "Result"
              }
            }
          ]
        },
        {
          "ruleIndex": 12,
          "rule": {
            "id": "cpp/misra/no-conversion-from-bool",
            "index": 111
          },
          "message": {
            "text": "Conversion from 'bool' to 'bool &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 730,
                  "startColumn": 26,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "60c43231bc99e4e0:1",
            "primaryLocationStartColumnFingerprint": "21"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'MakeSharedEnabler' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 114,
                  "startColumn": 7,
                  "endColumn": 24
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c56b9b4c5acb67fe:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'HandlerPointerT' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 288,
                  "startColumn": 15,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c265843733f1f517:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 15,
          "rule": {
            "id": "cpp/misra/unused-type-with-limited-visibility",
            "index": 193
          },
          "message": {
            "text": "Type 'HandlerPointerT' with limited visibility is not used."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 154,
                  "startColumn": 11,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9773a1d9a998c19:1",
            "primaryLocationStartColumnFingerprint": "6"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 44,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "adf53fe8c627dcc3:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 58,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "adf53fe8c627dcc3:1",
            "primaryLocationStartColumnFingerprint": "53"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 38,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "19e5348aa46a5e4f:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 47,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "19e5348aa46a5e4f:1",
            "primaryLocationStartColumnFingerprint": "42"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 38,
                  "endColumn": 54
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "19e5348aa46a5e4f:1",
            "primaryLocationStartColumnFingerprint": "33"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 57,
                  "endColumn": 63
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "19e5348aa46a5e4f:1",
            "primaryLocationStartColumnFingerprint": "52"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'basic_ostream<char, char_traits<char>> &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 61,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e33b6bb092d9a470:2",
            "primaryLocationStartColumnFingerprint": "52"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 22,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fa339cd99a0c3ec:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 9,
                  "endLine": 51,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e33b6bb092d9a470:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "48a3adb2eb26c07d:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'basic_ostream<char, char_traits<char>> &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 61,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e33b6bb092d9a470:1",
            "primaryLocationStartColumnFingerprint": "52"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 32,
                  "startColumn": 22,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fa339cd99a0c3ec:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 31,
                  "startColumn": 9,
                  "endLine": 32,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e33b6bb092d9a470:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 38,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b9d54003286978a6:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 59,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 69,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "64"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 59,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 79,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 59,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 89,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 59,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 99,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "94"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the left operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 59,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '|' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 598,
                  "startColumn": 109,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b68301901f90a1bb:1",
            "primaryLocationStartColumnFingerprint": "104"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Bitwise operator '&' requires unsigned numeric operands, but the right operand has type 'int'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 70,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9c0e78e1a89a7861:1",
            "primaryLocationStartColumnFingerprint": "65"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'basic_ostream<char, char_traits<char>> &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af06a0499a2b5d6:2",
            "primaryLocationStartColumnFingerprint": "49"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 70,
                  "startColumn": 22,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fa339cd99a0c3ec:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 69,
                  "startColumn": 9,
                  "endLine": 70,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af06a0499a2b5d6:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 76,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f54afb7167677ffa:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'basic_ostream<char, char_traits<char>> &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 58,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af06a0499a2b5d6:1",
            "primaryLocationStartColumnFingerprint": "49"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 22,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5fa339cd99a0c3ec:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 9,
                  "endLine": 51,
                  "endColumn": 49
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af06a0499a2b5d6:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned right operand, but has type 'unknown'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b9d54003286978a6:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 17,
          "rule": {
            "id": "cpp/misra/inappropriate-bitwise-or-shift-operands",
            "index": 74
          },
          "message": {
            "text": "Shift operator '<<' requires unsigned left operand, but has type 'basic_ostream<char, char_traits<char>> &'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/binding_service_type_deployment_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 82,
                  "endColumn": 83
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "495ee434791f7592:1",
            "primaryLocationStartColumnFingerprint": "77"
          }
        },
        {
          "ruleIndex": 18,
          "rule": {
            "id": "cpp/misra/automatic-storage-assigned-to-object-greater-lifetime",
            "index": 10
          },
          "message": {
            "text": "A stack address ([source](1)) may be assigned to a non-local variable."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 475,
                  "startColumn": 5,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bb3281f9991ccb6f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 475,
                  "startColumn": 23,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "source"
              }
            }
          ]
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'new_set' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 14,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e6bb6260b9ea5ff:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'old_set' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 14,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "188d9e3fdb162cdc:1",
            "primaryLocationStartColumnFingerprint": "9"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'signal' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 16,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fdf955738cb8c145:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'event_ptr' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 344,
                  "startColumn": 24,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fdf955738cb8c145:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'existing_element' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'was_inserted' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1251,
                  "startColumn": 35,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cc7c8da6082de3:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'existing_element' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'was_inserted' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1232,
                  "startColumn": 35,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e2035b3c803abf7:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'inserted_resource_it' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable '_' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/methods/method_resource_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 51,
                  "startColumn": 39,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7cd9dbe3f2819bdf:1",
            "primaryLocationStartColumnFingerprint": "34"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'ignorable' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 937,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "979ceb59f53a09e:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'was_inserted' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 937,
                  "startColumn": 28,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "979ceb59f53a09e:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'ignorable' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 562,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "839382afd9fdc2f:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 21,
          "rule": {
            "id": "cpp/misra/uninitialized-variable",
            "index": 178
          },
          "message": {
            "text": "Variable 'was_inserted' has no initializer."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 562,
                  "startColumn": 28,
                  "endColumn": 29
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "839382afd9fdc2f:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 90,
                  "startColumn": 9,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5896a63b5607efad:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 24,
          "rule": {
            "id": "cpp/misra/invariant-condition",
            "index": 90
          },
          "message": {
            "text": "The path is unreachable in a template.\nThe false path is infeasible because this expression consists of constants which evaluate to true."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/configuration/configuration_common_resources.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 158,
                  "startColumn": 5,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aba918d1d806c6de:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 26,
          "rule": {
            "id": "cpp/misra/unused-limited-visibility-variable",
            "index": 190
          },
          "message": {
            "text": "Variable 'type_deployment' is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/proxy_event_binding_factory_impl.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 17,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ba5fcd868ac5bce0:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 27,
          "rule": {
            "id": "cpp/misra/nullptr-not-the-only-form-of-the-null-pointer-constant",
            "index": 132
          },
          "message": {
            "text": "0 is used as the null-pointer-constant but is not nullptr."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 313,
                  "startColumn": 33,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86b7ec446ae927b5:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 68,
          "rule": {
            "id": "cpp/misra/comma-operator-should-not-be-used",
            "index": 28
          },
          "message": {
            "text": "Use of banned ',' expression."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 414,
                  "startColumn": 13,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9b9e38342e6a44d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 28,
          "rule": {
            "id": "cpp/misra/non-explicit-conversion-member",
            "index": 124
          },
          "message": {
            "text": "Conversion operator shall be explicit."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 312,
                  "startColumn": 87,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd205509048ccc1a:1",
            "primaryLocationStartColumnFingerprint": "82"
          }
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Static cast from unscoped enum [_io_msg_xtypes](1) without fixed underlying type to 'unsigned int' which may not be large enough."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 752,
                  "startColumn": 25,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3240667efe1d563a:2",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 6,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "_io_msg_xtypes"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Static cast from unscoped enum [_io_msg_xtypes](1) without fixed underlying type to 'unsigned int' which may not be large enough."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 752,
                  "startColumn": 72,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3240667efe1d563a:2",
            "primaryLocationStartColumnFingerprint": "67"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 6,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "_io_msg_xtypes"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Relational or equality operation compares unscoped enum [_io__Uint16types](1) without fixed underlying type to a different type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 770,
                  "startColumn": 27,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f660660819d96318:1",
            "primaryLocationStartColumnFingerprint": "22"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "_io__Uint16types"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Static cast from unscoped enum [_io_msg_xtypes](1) without fixed underlying type to 'unsigned int' which may not be large enough."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 678,
                  "startColumn": 25,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3240667efe1d563a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 6,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "_io_msg_xtypes"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Static cast from unscoped enum [_io_msg_xtypes](1) without fixed underlying type to 'unsigned int' which may not be large enough."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 678,
                  "startColumn": 72,
                  "endColumn": 114
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3240667efe1d563a:1",
            "primaryLocationStartColumnFingerprint": "67"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 121,
                  "startColumn": 6,
                  "endColumn": 20
                }
              },
              "message": {
                "text": "_io_msg_xtypes"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Relational or equality operation compares unscoped enum [_io__Uint16types](1) without fixed underlying type to a different type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 698,
                  "startColumn": 32,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "deda02dfdfe7c882:1",
            "primaryLocationStartColumnFingerprint": "27"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "_io__Uint16types"
              }
            }
          ]
        },
        {
          "ruleIndex": 69,
          "rule": {
            "id": "cpp/misra/unscoped-enum-without-fixed-underlying-type-used",
            "index": 185
          },
          "message": {
            "text": "Assignment from unscoped enum [_io__Uint16types](1) without fixed underlying type to 'unsigned short' which may not be large enough."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 339,
                  "startColumn": 5,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d39a21dd106946e8:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/sys/iomsg.h"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 6,
                  "endColumn": 22
                }
              },
              "message": {
                "text": "_io__Uint16types"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kShmPathPrefix declared as const, but is not constant initialized because it [calls the Path(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 24,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8c89a1cc03d9bb4:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 95,
                  "startColumn": 39,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "calls the Path(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable TMP_PATH declared as const, but is not constant initialized because it [calls the Path(..) constructor which is not marked as constexpr](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 24,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5aeba539a80bb8dc:1",
            "primaryLocationStartColumnFingerprint": "23"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 33,
                  "endColumn": 80
                }
              },
              "message": {
                "text": "calls the Path(..) constructor which is not marked as constexpr"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kSkeletonFieldTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [uses a non-constant element in the initialization](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 5,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c9fdcb3e13af835:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "uses a non-constant element in the initialization"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kSkeletonEventTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [uses a non-constant element in the initialization](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 107,
                  "startColumn": 5,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b73b61d87e800ed:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "uses a non-constant element in the initialization"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kProxyFieldTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [uses a non-constant element in the initialization](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 5,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "677e1955ae268375:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "uses a non-constant element in the initialization"
              }
            }
          ]
        },
        {
          "ruleIndex": 32,
          "rule": {
            "id": "cpp/misra/global-variable-used",
            "index": 63
          },
          "message": {
            "text": "Global variable kProxyEventTracePointToTracingTracePointMap declared as const, but is not constant initialized because it [uses a non-constant element in the initialization](1)"
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 5,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7f8ab10b820cf261:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/"
                }
              },
              "message": {
                "text": "uses a non-constant element in the initialization"
              }
            }
          ]
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'unsigned char' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/memory_region_map.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 352,
                  "startColumn": 58,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d96bf0024607401:1",
            "primaryLocationStartColumnFingerprint": "41"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from '_Uint16t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 787,
                  "startColumn": 16,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94faf9fd3631744f:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 787,
                  "startColumn": 25,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94faf9fd3631744f:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'int64_t' to 'unsigned long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 810,
                  "startColumn": 33,
                  "endColumn": 78
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c0c33925651389e7:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from '_Uint16t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 770,
                  "startColumn": 27,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f660660819d96318:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from '_Uint16t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 698,
                  "startColumn": 32,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "deda02dfdfe7c882:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 92,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f65ea118ba20f52a:1",
            "primaryLocationStartColumnFingerprint": "87"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 107,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f65ea118ba20f52a:1",
            "primaryLocationStartColumnFingerprint": "102"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 15,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68cd2ee24aa55db2:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint16_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 220,
                  "startColumn": 25,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68cd2ee24aa55db2:1",
            "primaryLocationStartColumnFingerprint": "20"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 257,
                  "startColumn": 22,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "781d25af74c89919:1",
            "primaryLocationStartColumnFingerprint": "17"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 257,
                  "startColumn": 30,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "781d25af74c89919:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 157,
                  "startColumn": 13,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ebd61e02254da7:1",
            "primaryLocationStartColumnFingerprint": "8"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 159,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f5429e962a450fd0:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'underlying_type_t' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 174,
                  "startColumn": 14,
                  "endColumn": 39
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f25e646e9c25d420:1",
            "primaryLocationStartColumnFingerprint": "5"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'type' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 410,
                  "startColumn": 16,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "823645edf0dc0599:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 88,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28e5693765cff1f4:1",
            "primaryLocationStartColumnFingerprint": "79"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 44,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac0ce47f54e71bb7:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 234,
                  "startColumn": 67,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1fecd2de22e9cad:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'uint8_t' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 234,
                  "startColumn": 97,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1fecd2de22e9cad:1",
            "primaryLocationStartColumnFingerprint": "56"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ProxyInstanceCounter' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 677,
                  "startColumn": 71,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd8962940c658c0a:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 494,
                  "startColumn": 20,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b5bf91ab293520:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 494,
                  "startColumn": 49,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b5bf91ab293520:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 502,
                  "startColumn": 88,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "70ba45e8864af6dc:1",
            "primaryLocationStartColumnFingerprint": "71"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 503,
                  "startColumn": 29,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfb3b41bf14c9ad9:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 314,
                  "startColumn": 80,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a063fccffaad845:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 315,
                  "startColumn": 57,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d432b935ade37e3:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 56,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d085b726f141e5a7:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 84,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d085b726f141e5a7:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 53,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6e814f606e52f7e:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 81,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6e814f606e52f7e:1",
            "primaryLocationStartColumnFingerprint": "64"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 816,
                  "startColumn": 76,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68db4e06e05a2908:1",
            "primaryLocationStartColumnFingerprint": "71"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 817,
                  "startColumn": 50,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86bc1805d3ae691e:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 747,
                  "startColumn": 89,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4eb2772be29b29af:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 748,
                  "startColumn": 50,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "59d8ff0c7ca9e014:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 418,
                  "startColumn": 16,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 421,
                  "startColumn": 16,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeb0f6bfa019:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 468,
                  "startColumn": 105,
                  "endColumn": 121
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95495fda78cd3a9e:1",
            "primaryLocationStartColumnFingerprint": "96"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 471,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 480,
                  "startColumn": 44,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 483,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'ServiceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 493,
                  "startColumn": 44,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:3",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'InstanceId' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 496,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:3",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'value_type' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscribed_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 37,
                  "startColumn": 66,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e9978f64640dd341:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'value_type' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/subscription_subscription_pending_states.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 39,
                  "startColumn": 66,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "12c7a7ddf512b0bf:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'type' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 11,
                  "endColumn": 58
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "971251d5c4c3ebda:1",
            "primaryLocationStartColumnFingerprint": "2"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Usual arithmetic conversion from 'type' to 'int' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 63,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "971251d5c4c3ebda:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'SamplePointerIndex' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 45,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2decbe6ea875173a:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'TracingSlotSizeType' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 566,
                  "startColumn": 49,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d63f253521e4baa:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'SamplePointerIndex' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 567,
                  "startColumn": 71,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6b8da426c499d37a:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'TracingSlotSizeType' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 581,
                  "startColumn": 49,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d63f253521e4baa:2",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'SamplePointerIndex' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 582,
                  "startColumn": 71,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97f8e536f7b37b3c:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 33,
          "rule": {
            "id": "cpp/misra/no-signedness-change-from-promotion",
            "index": 116
          },
          "message": {
            "text": "Integer promotion from 'type' to 'long long' changes signedness."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 20,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1a0a58c57e6b3c7:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 34,
          "rule": {
            "id": "cpp/misra/functions-call-themselves-either-directly-or-indirectly",
            "index": 59
          },
          "message": {
            "text": "The function ~ServerConnection is indirectly recursive via this call to [~unique_ptr](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 301,
                  "endColumn": 2
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d00b1876ae96bea:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_baselibs+/score/language/futurecpp/include/score/private/memory/unique_ptr.hpp"
                },
                "region": {
                  "startLine": 101,
                  "startColumn": 5,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "~unique_ptr"
              }
            }
          ]
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation - of type long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 707,
                  "startColumn": 29,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "618a4f6218e36cd6:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation - of type long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 707,
                  "startColumn": 29,
                  "endLine": 708,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "618a4f6218e36cd6:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 36,
          "rule": {
            "id": "cpp/misra/signed-integer-overflow",
            "index": 169
          },
          "message": {
            "text": "Operation + of type long long may overflow or underflow."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 543,
                  "startColumn": 27,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f822b874bb445c7e:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 37,
          "rule": {
            "id": "cpp/misra/non-static-member-not-init-before-use",
            "index": 126
          },
          "message": {
            "text": "Constructor does not initialize non-static data member [quality_type_](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 74,
                  "startColumn": 14,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "16d4c74bdbb2491f:1",
            "primaryLocationStartColumnFingerprint": "9"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/enriched_instance_identifier.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 145,
                  "startColumn": 17,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "quality_type_"
              }
            }
          ]
        },
        {
          "ruleIndex": 41,
          "rule": {
            "id": "cpp/misra/reinterpret-cast-shall-not-be-used",
            "index": 163
          },
          "message": {
            "text": "Use of reinterpret_cast."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 212,
                  "startColumn": 30,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ef67637694725dd:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 44,
          "rule": {
            "id": "cpp/misra/member-specifiers-not-used-appropriately",
            "index": 102
          },
          "message": {
            "text": "Member function '~ServerConnection' overrides a base function but uses 'virtual' specifier."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 282,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "49febc31ec3b2475:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 46,
          "rule": {
            "id": "cpp/misra/std-move-with-non-const-lvalue",
            "index": 170
          },
          "message": {
            "text": "Call to 'std::move' with xvalue argument of type 'value_type &&'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 187,
                  "startColumn": 22,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2280518a1e0099fa:1",
            "primaryLocationStartColumnFingerprint": "13"
          }
        },
        {
          "ruleIndex": 50,
          "rule": {
            "id": "cpp/misra/no-pointer-to-integral-cast",
            "index": 115
          },
          "message": {
            "text": "Cast converts pointer type to integral type 'unsigned long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 212,
                  "startColumn": 30,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4ef67637694725dd:1",
            "primaryLocationStartColumnFingerprint": "25"
          }
        },
        {
          "ruleIndex": 70,
          "rule": {
            "id": "cpp/misra/result-of-an-assignment-operator-should-not-be-used",
            "index": 164
          },
          "message": {
            "text": "Use of an assignment operator's result."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 414,
                  "startColumn": 13,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9b9e38342e6a44d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [imbue](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/log/logging_callback.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 16,
                  "endColumn": 21
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfafba8749712db5:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/ios"
                },
                "region": {
                  "startLine": 631,
                  "startColumn": 65,
                  "endColumn": 66
                }
              },
              "message": {
                "text": "imbue"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 311,
                  "startColumn": 20,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "498e5e710e742d97:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 278,
                  "startColumn": 16,
                  "endColumn": 28
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ce6c9394d73189fe:1",
            "primaryLocationStartColumnFingerprint": "7"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1c16c319cfa75c14:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 50,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d1a559200a836e41:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 57,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2602336cac299a95:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 71,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dccc6dd7373c3d93:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 85,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96d3b74f53583678:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 89,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "35184d09319fe82b:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 97,
                  "startColumn": 33,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "379baeab8e4251a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_control.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 103,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96d3b74f53583678:2",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 42,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dbc14dd4f6f2fcd7:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 46,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af799269b2368a03:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 49,
                  "startColumn": 25,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "af799269d7dbddcc:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 64,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cf43acece6f4061a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_data_storage.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 29,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4caaffda4665f05a:1",
            "primaryLocationStartColumnFingerprint": "20"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 600,
                  "startColumn": 50,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44f7a27b1ea878a3:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 605,
                  "startColumn": 50,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6c2540640b77fb41:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 144,
                  "startColumn": 22,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "437fb9d6c850379f:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 51,
          "rule": {
            "id": "cpp/misra/unused-return-value-misra-cpp",
            "index": 192
          },
          "message": {
            "text": "Return value from call to [emplace_back](1) is unused."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/skeleton_base.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 118,
                  "startColumn": 22,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a88f93aa74bdf36b:1",
            "primaryLocationStartColumnFingerprint": "13"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "file:/home/runner/.bazel/external/score_bazel_cpp_toolchains++gcc+score_qcc_x86_64_toolchain_pkg/target/qnx/usr/include/c++/v1/vector"
                },
                "region": {
                  "startLine": 645,
                  "startColumn": 7,
                  "endColumn": 8
                }
              },
              "message": {
                "text": "emplace_back"
              }
            }
          ]
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Function 'QuitPulseCallback' has variable-width return type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 5,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "432da89575be77ad:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'code' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 161,
                  "startColumn": 45,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15504b58cf45ebe7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'flags' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 162,
                  "startColumn": 45,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a7ee85805d8ffdfc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Function 'CoidDeathPulseCallback' has variable-width return type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 236,
                  "startColumn": 5,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dce2e8edd139bce:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'code' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 237,
                  "startColumn": 47,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15504b58cf45ebe7:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'flags' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 238,
                  "startColumn": 47,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a7ee85805d8ffdfc:3",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Function 'SelectPulseCallback' has variable-width return type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 5,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6300661ca69dede6:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'code' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 44,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15504b58cf45ebe7:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'flags' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 201,
                  "startColumn": 44,
                  "endColumn": 52
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a7ee85805d8ffdfc:2",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Function 'TimerPulseCallback' has variable-width return type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 5,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "71ea3aa2c37d6364:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'code' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 183,
                  "startColumn": 43,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "15504b58cf45ebe7:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'flags' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 184,
                  "startColumn": 43,
                  "endColumn": 51
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a7ee85805d8ffdfc:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 53,
          "rule": {
            "id": "cpp/misra/avoid-standard-integer-type-names",
            "index": 12
          },
          "message": {
            "text": "Variable 'coid' has variable-width type."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 261,
                  "startColumn": 81,
                  "endColumn": 82
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c788b149f779c7f1:1",
            "primaryLocationStartColumnFingerprint": "72"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'char *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/sealedshm/sealedshm_wrapper/sealed_shm.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 28,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "19e5348aa46a5e4f:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'type' to pointer type 'void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/new_delete_delegate_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 93,
                  "startColumn": 12,
                  "endColumn": 79
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "216833781ca80a61:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'DispatchThreadRunner *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 170,
                  "startColumn": 19,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "aeb5038c99bf2a07:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'int' to pointer type 'PosixEndpointEntry *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 313,
                  "startColumn": 33,
                  "endColumn": 34
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86b7ec446ae927b5:1",
            "primaryLocationStartColumnFingerprint": "24"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'uint8_t *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 722,
                  "startColumn": 57,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "22b20b0b3d335b9f:1",
            "primaryLocationStartColumnFingerprint": "52"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type '_Uintptrt' to pointer type 'void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 414,
                  "startColumn": 13,
                  "endColumn": 113
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9b9e38342e6a44d:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'QnxDispatchEngine *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 246,
                  "startColumn": 32,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52e217059bd867f7:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'QnxDispatchEngine *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 209,
                  "startColumn": 32,
                  "endColumn": 71
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e653dacd8328c7b5:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from pointer to void type 'void *' to pointer type 'QnxDispatchEngine *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 192,
                  "startColumn": 5,
                  "endColumn": 44
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "679f3170fded200c:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 55,
          "rule": {
            "id": "cpp/misra/int-to-pointer-cast-prohibited",
            "index": 83
          },
          "message": {
            "text": "Cast from integral type 'uintptr_t' to pointer type 'void *'.\nCast from integral type 'uintptr_t' to pointer type 'byte *'.\nCast from integral type 'uintptr_t' to pointer type 'const void *'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/pointer_arithmetic_util.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 12,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "788421c02554dcef:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 9,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "527ccf7c46779d37:2",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 29,
                  "startColumn": 9,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "527ccf7c46779d37:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 67,
                  "startColumn": 9,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9b96ed1a6b70e364:2",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 59,
          "rule": {
            "id": "cpp/misra/no-implicit-bool-conversion",
            "index": 113
          },
          "message": {
            "text": "Conversion from 'unknown' to 'bool'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 48,
                  "startColumn": 9,
                  "endColumn": 30
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9b96ed1a6b70e364:1",
            "primaryLocationStartColumnFingerprint": "4"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 80,
                  "startColumn": 17,
                  "endColumn": 25
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d34e7e26986992c:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 204,
                  "startColumn": 28,
                  "endColumn": 37
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "44e9c7429137cfd8:1",
            "primaryLocationStartColumnFingerprint": "23"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 200,
                  "startColumn": 24,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b528fc53c8d57de0:1",
            "primaryLocationStartColumnFingerprint": "19"
          }
        },
        {
          "ruleIndex": 60,
          "rule": {
            "id": "cpp/misra/member-functions-refqualified",
            "index": 101
          },
          "message": {
            "text": "Member function is not properly ref qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 65,
                  "startColumn": 23,
                  "endColumn": 77
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "93d9b331d963f746:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[SealAnonymousOrReserveNamedSharedMemory](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1139,
                  "startColumn": 64,
                  "endColumn": 65
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f726cc660d39c090:1",
            "primaryLocationStartColumnFingerprint": "55"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1129,
                  "startColumn": 6,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "SealAnonymousOrReserveNamedSharedMemory"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[SealAnonymousOrReserveNamedSharedMemory](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1145,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e604bfdffdfa69c9:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1129,
                  "startColumn": 6,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "SealAnonymousOrReserveNamedSharedMemory"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[SealAnonymousOrReserveNamedSharedMemory](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1143,
                  "startColumn": 9,
                  "endLine": 1148,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "70c05c5dab37dfa4:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1129,
                  "startColumn": 6,
                  "endColumn": 67
                }
              },
              "message": {
                "text": "SealAnonymousOrReserveNamedSharedMemory"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[AllocateInTypedMemory](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1062,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c6e626aa358897c2:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1031,
                  "startColumn": 6,
                  "endColumn": 49
                }
              },
              "message": {
                "text": "AllocateInTypedMemory"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[ApplyPermissions](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 921,
                  "startColumn": 67,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8158f0d8dbbfa3d:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 898,
                  "startColumn": 6,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "ApplyPermissions"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 845,
                  "startColumn": 60,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9cde5ec55bdba233:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 829,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "CallServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 855,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a8c7c323ef58d424:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 829,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "CallServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 863,
                  "startColumn": 60,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "21107b579f9622e7:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 829,
                  "startColumn": 14,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "CallServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallUnsubscribeServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 814,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3312fc9e78ea33fb:2",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 796,
                  "startColumn": 14,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "CallUnsubscribeServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallUnsubscribeServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 823,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d19b99f48093485a:2",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 796,
                  "startColumn": 14,
                  "endColumn": 81
                }
              },
              "message": {
                "text": "CallUnsubscribeServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallSubscribeServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 781,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3312fc9e78ea33fb:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 763,
                  "startColumn": 14,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "CallSubscribeServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CallSubscribeServiceMethodRemotely](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 790,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d19b99f48093485a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 763,
                  "startColumn": 14,
                  "endColumn": 79
                }
              },
              "message": {
                "text": "CallSubscribeServiceMethodRemotely"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[SendRegisterEventNotificationMessage](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1463,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c5015b09303bda14:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1449,
                  "startColumn": 6,
                  "endColumn": 73
                }
              },
              "message": {
                "text": "SendRegisterEventNotificationMessage"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[UnregisterEventNotificationRemote](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1435,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f2933cab304db370:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1368,
                  "startColumn": 6,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "UnregisterEventNotificationRemote"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[UnregisterEventNotificationRemote](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1444,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "feb03b0c583cbf11:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1368,
                  "startColumn": 6,
                  "endColumn": 70
                }
              },
              "message": {
                "text": "UnregisterEventNotificationRemote"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[NotifyEventRemote](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 918,
                  "startColumn": 21,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2c8f401231f5df94:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 874,
                  "startColumn": 6,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "NotifyEventRemote"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[HandleOutdatedNodeIdMsg](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 600,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "553fa6ad2315d4db:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 578,
                  "startColumn": 6,
                  "endColumn": 60
                }
              },
              "message": {
                "text": "HandleOutdatedNodeIdMsg"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[MessageCallbackWithReply](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 416,
                  "startColumn": 9,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6497bb5183fd27b9:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 408,
                  "startColumn": 21,
                  "endColumn": 76
                }
              },
              "message": {
                "text": "MessageCallbackWithReply"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[MessageCallbackWithReply](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 437,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f942dbf6fa415884:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 408,
                  "startColumn": 21,
                  "endColumn": 76
                }
              },
              "message": {
                "text": "MessageCallbackWithReply"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[MessageCallback](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 384,
                  "startColumn": 9,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2b3bb82a489cd59:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "MessageCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[MessageCallback](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 404,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3034a947ff1f3e15:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 378,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "MessageCallback"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[NotifyOutdatedNodeId](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1326,
                  "startColumn": 60,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7bbd80befdaa434a:1",
            "primaryLocationStartColumnFingerprint": "18"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1312,
                  "startColumn": 6,
                  "endColumn": 57
                }
              },
              "message": {
                "text": "NotifyOutdatedNodeId"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[UnregisterEventNotification](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1205,
                  "startColumn": 9,
                  "endColumn": 16
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96671f2219cb2597:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1156,
                  "startColumn": 6,
                  "endColumn": 64
                }
              },
              "message": {
                "text": "UnregisterEventNotification"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 334,
                  "startColumn": 13,
                  "endColumn": 117
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8431195579275138:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 111,
                  "endColumn": 112
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 337,
                  "startColumn": 13,
                  "endLine": 341,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "66eb17cc550baf49:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 111,
                  "endColumn": 112
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CleanupMethods](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 773,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5cd7dec4896686ef:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 747,
                  "startColumn": 6,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "CleanupMethods"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[ServiceAvailabilityChangeHandler](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 542,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "350b7870b2f052c5:1",
            "primaryLocationStartColumnFingerprint": "24"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 476,
                  "startColumn": 6,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "ServiceAvailabilityChangeHandler"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[Create](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 411,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "85f73758a3536865:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 353,
                  "startColumn": 24,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "Create"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PlaceSharedLockOnUsageMarkerFileWithRetry](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 56,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac0ce47f54e71bb7:1",
            "primaryLocationStartColumnFingerprint": "15"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "PlaceSharedLockOnUsageMarkerFileWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PlaceSharedLockOnUsageMarkerFileWithRetry](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 142,
                  "startColumn": 9,
                  "endLine": 145,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e87af54fc81d2b00:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "PlaceSharedLockOnUsageMarkerFileWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PlaceSharedLockOnUsageMarkerFileWithRetry](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 146,
                  "startColumn": 9,
                  "endColumn": 56
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4e8c2740dfd94605:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "PlaceSharedLockOnUsageMarkerFileWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PlaceSharedLockOnUsageMarkerFileWithRetry](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 147,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a0b7854bd7b7ef36:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 115,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "PlaceSharedLockOnUsageMarkerFileWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CrawlAndWatchWithRetry](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 235,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "899b08c3cbfa32b8:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 6,
                  "endColumn": 45
                }
              },
              "message": {
                "text": "CrawlAndWatchWithRetry"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[OnServiceMethodsSubscribed](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 678,
                  "startColumn": 42,
                  "endColumn": 43
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "510e231127061896:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 663,
                  "startColumn": 14,
                  "endColumn": 50
                }
              },
              "message": {
                "text": "OnServiceMethodsSubscribed"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[DisconnectQmConsumers](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 556,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c297dbd637febbb8:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 545,
                  "startColumn": 6,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "DisconnectQmConsumers"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareStopOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 494,
                  "startColumn": 67,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b5bf91ab293520:1",
            "primaryLocationStartColumnFingerprint": "50"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 428,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "PrepareStopOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareStopOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 503,
                  "startColumn": 47,
                  "endColumn": 48
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfb3b41bf14c9ad9:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 428,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "PrepareStopOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareStopOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 517,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "db0c5750dc768229:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 428,
                  "startColumn": 6,
                  "endColumn": 32
                }
              },
              "message": {
                "text": "PrepareStopOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 315,
                  "startColumn": 75,
                  "endColumn": 76
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d432b935ade37e3:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 322,
                  "startColumn": 13,
                  "endLine": 327,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb6dfb058f9aabf5:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 328,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d7dc32453664d84:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 102,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d085b726f141e5a7:1",
            "primaryLocationStartColumnFingerprint": "85"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 342,
                  "startColumn": 13,
                  "endLine": 344,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e4749e6f1e224959:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 345,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "623468f0605cd286:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 99,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6e814f606e52f7e:1",
            "primaryLocationStartColumnFingerprint": "82"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 356,
                  "startColumn": 13,
                  "endLine": 358,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "312f69c864ebc36c:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 360,
                  "startColumn": 13,
                  "endLine": 362,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fbf93a3960ee4076:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 363,
                  "startColumn": 13,
                  "endColumn": 19
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f016d1a7fbc4eb88:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 371,
                  "startColumn": 5,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1eb368474e477dc9:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 374,
                  "startColumn": 5,
                  "endLine": 376,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b50dc339a4ac4bf7:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 380,
                  "startColumn": 5,
                  "endLine": 383,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9e8172a3e5a7db00:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 381,
                  "startColumn": 5,
                  "endLine": 383,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "808571d43d2ea6e6:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 385,
                  "startColumn": 5,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "65ea269c996b6e5f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 397,
                  "startColumn": 5,
                  "endLine": 399,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1eb956562a50f8e3:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 401,
                  "startColumn": 5,
                  "endLine": 412,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5df6e0fb1bac5e8a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 406,
                  "startColumn": 9,
                  "endLine": 408,
                  "endColumn": 10
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4b6b337b5934822a:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 409,
                  "startColumn": 9,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8fb44aebed458d16:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 402,
                  "startColumn": 5,
                  "endLine": 412,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "771cbdd97a14a14:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[PrepareOffer](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 414,
                  "startColumn": 5,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f349365bb689d86e:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 286,
                  "startColumn": 6,
                  "endColumn": 28
                }
              },
              "message": {
                "text": "PrepareOffer"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[OpenSharedMemoryForData](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 818,
                  "startColumn": 5,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c91328f546b13645:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 798,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "OpenSharedMemoryForData"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[OpenSharedMemoryForData](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 820,
                  "startColumn": 59,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e638abdcd12e78f:2",
            "primaryLocationStartColumnFingerprint": "54"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 798,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "OpenSharedMemoryForData"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[OpenSharedMemoryForData](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 821,
                  "startColumn": 5,
                  "endLine": 840,
                  "endColumn": 6
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e29573ea58f6e5c1:2",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 798,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "OpenSharedMemoryForData"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[OpenSharedMemoryForData](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 841,
                  "startColumn": 5,
                  "endColumn": 17
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9c5c335c6c8f5d42:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 798,
                  "startColumn": 6,
                  "endColumn": 52
                }
              },
              "message": {
                "text": "OpenSharedMemoryForData"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CreateSharedMemoryForData](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 748,
                  "startColumn": 68,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "59d8ff0c7ca9e014:1",
            "primaryLocationStartColumnFingerprint": "30"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 690,
                  "startColumn": 6,
                  "endColumn": 54
                }
              },
              "message": {
                "text": "CreateSharedMemoryForData"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CalculateShmResourceStorageSizes](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 422,
                  "startColumn": 13,
                  "endColumn": 14
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a65716909c83344:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 401,
                  "startColumn": 48,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "CalculateShmResourceStorageSizes"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CalculateShmResourceStorageSizes](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 472,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7538023e116f0f:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 401,
                  "startColumn": 48,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "CalculateShmResourceStorageSizes"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CalculateShmResourceStorageSizes](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 484,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7538023e116bb6:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 401,
                  "startColumn": 48,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "CalculateShmResourceStorageSizes"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[CalculateShmResourceStorageSizes](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 497,
                  "startColumn": 41,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7538023e116bb6:2",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 401,
                  "startColumn": 48,
                  "endColumn": 103
                }
              },
              "message": {
                "text": "CalculateShmResourceStorageSizes"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[operator()](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 109,
                  "startColumn": 21,
                  "endColumn": 22
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dbfd5c13f03e1deb:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 104,
                  "startColumn": 15,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "operator()"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[AddTracePointToMap](1)'.\nUnreachable statement in function '[AddTracePointToMap](2)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 84,
                  "startColumn": 9,
                  "endColumn": 26
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "87e36dfbee191e86:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 6,
                  "endColumn": 24
                }
              },
              "message": {
                "text": "AddTracePointToMap"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 73,
                  "startColumn": 6,
                  "endColumn": 7
                }
              },
              "message": {
                "text": "AddTracePointToMap"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[Trace](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 567,
                  "startColumn": 99,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6b8da426c499d37a:1",
            "primaryLocationStartColumnFingerprint": "82"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 510,
                  "startColumn": 14,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Trace"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[Trace](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 582,
                  "startColumn": 99,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97f8e536f7b37b3c:1",
            "primaryLocationStartColumnFingerprint": "82"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 510,
                  "startColumn": 14,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Trace"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[Trace](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 585,
                  "startColumn": 9,
                  "endColumn": 47
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "fccf344b469a0be7:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 510,
                  "startColumn": 14,
                  "endColumn": 35
                }
              },
              "message": {
                "text": "Trace"
              }
            }
          ]
        },
        {
          "ruleIndex": 62,
          "rule": {
            "id": "cpp/misra/unreachable-statement",
            "index": 183
          },
          "message": {
            "text": "Unreachable statement in function '[TracingRuntime](1)'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 319,
                  "startColumn": 17,
                  "endColumn": 18
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5121fda0f6785695:1",
            "primaryLocationStartColumnFingerprint": "0"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 304,
                  "endColumn": 31
                }
              },
              "message": {
                "text": "TracingRuntime"
              }
            }
          ]
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_resource_path.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 26,
                  "startColumn": 64,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "96840d5e081af24c:1",
            "primaryLocationStartColumnFingerprint": "59"
          }
        },
        {
          "ruleIndex": 63,
          "rule": {
            "id": "cpp/misra/unsigned-integer-literals-not-appropriately-suffixed",
            "index": 187
          },
          "message": {
            "text": "Octal literal is an unsigned integer but does not include a 'U' suffix."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 268,
                  "startColumn": 12,
                  "endColumn": 27
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "38e528c6eed5945f:1",
            "primaryLocationStartColumnFingerprint": "7"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1139,
                  "startColumn": 55,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f726cc660d39c090:1",
            "primaryLocationStartColumnFingerprint": "46"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1145,
                  "startColumn": 32,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e604bfdffdfa69c9:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'FileDescriptor' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1120,
                  "startColumn": 24,
                  "endColumn": 40
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "197d99eef62f015b:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1124,
                  "startColumn": 55,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e6e3b45ff3a881:1",
            "primaryLocationStartColumnFingerprint": "46"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned long' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1124,
                  "startColumn": 103,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2e6e3b45ff3a881:1",
            "primaryLocationStartColumnFingerprint": "94"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1062,
                  "startColumn": 32,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c6e626aa358897c2:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'size_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 776,
                  "startColumn": 84,
                  "endColumn": 95
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "3c53323c385d0f8e:1",
            "primaryLocationStartColumnFingerprint": "79"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const int &' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/shared_memory_resource.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 921,
                  "startColumn": 62,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c8158f0d8dbbfa3d:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned long' to 'const uint32_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 553,
                  "startColumn": 44,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d9f68555a099d3e:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned long' to 'const uint32_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 553,
                  "startColumn": 85,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9d9f68555a099d3e:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 214,
                  "startColumn": 85,
                  "endColumn": 90
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f65ea118ba20f52a:1",
            "primaryLocationStartColumnFingerprint": "80"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 215,
                  "startColumn": 37,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "58cc4ea26ef52f93:1",
            "primaryLocationStartColumnFingerprint": "28"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 222,
                  "startColumn": 36,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e7255f4bd2490127:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 228,
                  "startColumn": 36,
                  "endColumn": 41
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ebf2e66d056a4047:1",
            "primaryLocationStartColumnFingerprint": "27"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int32_t' to 'long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 249,
                  "startColumn": 5,
                  "endColumn": 68
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "52ce9e51b0158332:1",
            "primaryLocationStartColumnFingerprint": "0"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint32_t' to 'size_type'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_server.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 45,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cff4186014fda66f:1",
            "primaryLocationStartColumnFingerprint": "38"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const long &' to 'long long'.\nAssignment between incompatible numeric types from 'const unsigned long &' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/mw_log_logger.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 55,
                  "startColumn": 35,
                  "endColumn": 38
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f5644b409b76b30e:1",
            "primaryLocationStartColumnFingerprint": "10"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const int &' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 280,
                  "startColumn": 59,
                  "endColumn": 64
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "adf8292410f08b12:1",
            "primaryLocationStartColumnFingerprint": "14"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 845,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9cde5ec55bdba233:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 854,
                  "startColumn": 97,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "62d974ec5cb86e1b:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 863,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "21107b579f9622e7:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 813,
                  "startColumn": 104,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "11f42330132b517d:1",
            "primaryLocationStartColumnFingerprint": "91"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 822,
                  "startColumn": 104,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a95ae9b273011853:1",
            "primaryLocationStartColumnFingerprint": "91"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 780,
                  "startColumn": 102,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dcc04f826bece7e:1",
            "primaryLocationStartColumnFingerprint": "89"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 789,
                  "startColumn": 102,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5514321a3da75c0b:1",
            "primaryLocationStartColumnFingerprint": "89"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1462,
                  "startColumn": 97,
                  "endColumn": 111
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "10032ea243431afa:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1434,
                  "startColumn": 104,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c2bce04b2cd6f7d3:1",
            "primaryLocationStartColumnFingerprint": "87"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1443,
                  "startColumn": 103,
                  "endColumn": 117
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "37910db9db47e40c:1",
            "primaryLocationStartColumnFingerprint": "86"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 917,
                  "startColumn": 97,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "341627b660675267:1",
            "primaryLocationStartColumnFingerprint": "76"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 599,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9ca29b7bcc9439a1:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 599,
                  "startColumn": 80,
                  "endColumn": 94
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9ca29b7bcc9439a1:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 415,
                  "startColumn": 102,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0de5f94ade4e3c9:2",
            "primaryLocationStartColumnFingerprint": "93"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 436,
                  "startColumn": 96,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "67eccf95733375e:1",
            "primaryLocationStartColumnFingerprint": "79"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 383,
                  "startColumn": 102,
                  "endColumn": 112
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f0de5f94ade4e3c9:1",
            "primaryLocationStartColumnFingerprint": "93"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 403,
                  "startColumn": 87,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4c5baad9b0fdd18f:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1326,
                  "startColumn": 45,
                  "endColumn": 59
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7bbd80befdaa434a:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'HandlerRegistrationNoType' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 1202,
                  "startColumn": 16,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "63e93208649722b6:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/messaging/message_passing_service_instance.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 106,
                  "endColumn": 116
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e45d5a1ced51342c:1",
            "primaryLocationStartColumnFingerprint": "89"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 772,
                  "startColumn": 39,
                  "endColumn": 42
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "f1851ee3781ad928:1",
            "primaryLocationStartColumnFingerprint": "22"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 542,
                  "startColumn": 32,
                  "endColumn": 35
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "350b7870b2f052c5:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 640,
                  "startColumn": 57,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "29773c420ebd34fd:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 620,
                  "startColumn": 57,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:3",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 600,
                  "startColumn": 57,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:2",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 570,
                  "startColumn": 57,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7ff080992f04f013:1",
            "primaryLocationStartColumnFingerprint": "48"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'type' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 410,
                  "startColumn": 16,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "823645edf0dc0599:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 139,
                  "startColumn": 88,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28e5693765cff1f4:1",
            "primaryLocationStartColumnFingerprint": "79"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 140,
                  "startColumn": 44,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ac0ce47f54e71bb7:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int32_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 428,
                  "startColumn": 72,
                  "endColumn": 85
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cb5846a9ee9617f6:1",
            "primaryLocationStartColumnFingerprint": "30"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'underlying_type_readmask' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 429,
                  "startColumn": 45,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "9525b90a0fefa7e5:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'underlying_type_readmask' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 439,
                  "startColumn": 45,
                  "endColumn": 99
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "279463c43f6f67c5:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 117,
                  "startColumn": 28,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c9c82b1fc787aaf8:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 94,
                  "startColumn": 32,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d9f6e0d5f544eea6:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 234,
                  "startColumn": 67,
                  "endColumn": 86
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1fecd2de22e9cad:1",
            "primaryLocationStartColumnFingerprint": "26"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'uint8_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/flag_file_crawler.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 234,
                  "startColumn": 97,
                  "endColumn": 118
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b1fecd2de22e9cad:1",
            "primaryLocationStartColumnFingerprint": "56"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ApplicationId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 676,
                  "startColumn": 83,
                  "endColumn": 97
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d37ed9c04ca16094:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ProxyInstanceCounter' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 677,
                  "startColumn": 71,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd8962940c658c0a:1",
            "primaryLocationStartColumnFingerprint": "29"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 677,
                  "startColumn": 112,
                  "endColumn": 121
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cd8962940c658c0a:1",
            "primaryLocationStartColumnFingerprint": "70"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 555,
                  "startColumn": 28,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d6844473faa6926:1",
            "primaryLocationStartColumnFingerprint": "15"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 494,
                  "startColumn": 20,
                  "endColumn": 36
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b5bf91ab293520:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 494,
                  "startColumn": 49,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b6b5bf91ab293520:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 502,
                  "startColumn": 88,
                  "endColumn": 104
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "70ba45e8864af6dc:1",
            "primaryLocationStartColumnFingerprint": "71"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 503,
                  "startColumn": 29,
                  "endColumn": 46
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "dfb3b41bf14c9ad9:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 314,
                  "startColumn": 80,
                  "endColumn": 96
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4a063fccffaad845:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 315,
                  "startColumn": 57,
                  "endColumn": 74
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d432b935ade37e3:1",
            "primaryLocationStartColumnFingerprint": "11"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 56,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d085b726f141e5a7:1",
            "primaryLocationStartColumnFingerprint": "39"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 333,
                  "startColumn": 84,
                  "endColumn": 101
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d085b726f141e5a7:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 53,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6e814f606e52f7e:1",
            "primaryLocationStartColumnFingerprint": "36"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 349,
                  "startColumn": 81,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e6e814f606e52f7e:1",
            "primaryLocationStartColumnFingerprint": "64"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 816,
                  "startColumn": 76,
                  "endColumn": 92
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "68db4e06e05a2908:1",
            "primaryLocationStartColumnFingerprint": "71"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 817,
                  "startColumn": 50,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86bc1805d3ae691e:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'pid_t' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 817,
                  "startColumn": 84,
                  "endColumn": 87
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "86bc1805d3ae691e:1",
            "primaryLocationStartColumnFingerprint": "46"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 747,
                  "startColumn": 89,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "4eb2772be29b29af:1",
            "primaryLocationStartColumnFingerprint": "84"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 748,
                  "startColumn": 50,
                  "endColumn": 67
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "59d8ff0c7ca9e014:1",
            "primaryLocationStartColumnFingerprint": "12"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const value_type &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 675,
                  "startColumn": 76,
                  "endColumn": 81
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "98009ee7b5f38bf8:1",
            "primaryLocationStartColumnFingerprint": "67"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const value_type &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 681,
                  "startColumn": 40,
                  "endColumn": 45
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "750213f017fb2f4d:1",
            "primaryLocationStartColumnFingerprint": "35"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'value_type &&' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 653,
                  "startColumn": 84,
                  "endColumn": 89
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28d20192ff82c8f5:1",
            "primaryLocationStartColumnFingerprint": "75"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'value_type &&' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 661,
                  "startColumn": 48,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "e8b0829896d0e4d1:1",
            "primaryLocationStartColumnFingerprint": "43"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 418,
                  "startColumn": 16,
                  "endColumn": 32
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 421,
                  "startColumn": 16,
                  "endColumn": 33
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeb0f6bfa019:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 468,
                  "startColumn": 105,
                  "endColumn": 121
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "95495fda78cd3a9e:1",
            "primaryLocationStartColumnFingerprint": "96"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 471,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 480,
                  "startColumn": 44,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 483,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:2",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ServiceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 493,
                  "startColumn": 44,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d9b3fa3989e12ae:3",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'InstanceId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton_memory_manager.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 496,
                  "startColumn": 44,
                  "endColumn": 61
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "40f0aeaf2af73ddb:3",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'TraceContextId' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 108,
                  "startColumn": 82,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "28162edba3cb498a:1",
            "primaryLocationStartColumnFingerprint": "61"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'SamplePointerIndex' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 413,
                  "startColumn": 45,
                  "endColumn": 72
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "2decbe6ea875173a:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'FileDescriptor' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 223,
                  "startColumn": 83,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "a9a462c7238eacbc:1",
            "primaryLocationStartColumnFingerprint": "74"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'ShmObjectHandle' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 197,
                  "startColumn": 85,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7edc5771321db7e4:1",
            "primaryLocationStartColumnFingerprint": "76"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'const value_type &' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 75,
                  "endColumn": 80
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "cc06adbc4b42f078:1",
            "primaryLocationStartColumnFingerprint": "66"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'value_type' to 'size_t'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/plumbing/skeleton_service_element_binding_factory_impl.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 98,
                  "startColumn": 42,
                  "endColumn": 57
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ca2b253bfdd035d2:1",
            "primaryLocationStartColumnFingerprint": "37"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'type &&' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 53,
                  "startColumn": 39,
                  "endColumn": 55
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "18e3ddfc0fa74c7c:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'unsigned long' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/hash_helper_for_service_element_and_se_view.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 54,
                  "startColumn": 39,
                  "endColumn": 84
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "ed09a07f8d2c9272:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'int' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/configuration/tracing_filter_config.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 83,
                  "startColumn": 75,
                  "endColumn": 109
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "7a7abc62ea7a1264:1",
            "primaryLocationStartColumnFingerprint": "66"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'TracingSlotSizeType' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 566,
                  "startColumn": 49,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d63f253521e4baa:1",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'SamplePointerIndex' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 567,
                  "startColumn": 71,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6b8da426c499d37a:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'TracingSlotSizeType' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 581,
                  "startColumn": 49,
                  "endColumn": 88
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5d63f253521e4baa:2",
            "primaryLocationStartColumnFingerprint": "32"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'SamplePointerIndex' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 582,
                  "startColumn": 71,
                  "endColumn": 98
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "97f8e536f7b37b3c:1",
            "primaryLocationStartColumnFingerprint": "54"
          }
        },
        {
          "ruleIndex": 64,
          "rule": {
            "id": "cpp/misra/numeric-assignment-type-mismatch",
            "index": 133
          },
          "message": {
            "text": "Assignment between incompatible numeric types from 'type' to 'long long'."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/tracing/tracing_runtime.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 318,
                  "startColumn": 20,
                  "endColumn": 103
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "1a0a58c57e6b3c7:1",
            "primaryLocationStartColumnFingerprint": "3"
          }
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'ctp' points/refers to a non-const type 'message_context_t' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 45,
                  "endColumn": 62
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "432da89575be77ad:1",
            "primaryLocationStartColumnFingerprint": "44"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/dispatch_thread_runner.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 160,
                  "startColumn": 5,
                  "endColumn": 44
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'ctp' points/refers to a non-const type 'message_context_t' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 236,
                  "startColumn": 66,
                  "endColumn": 69
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "8dce2e8edd139bce:1",
            "primaryLocationStartColumnFingerprint": "65"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 236,
                  "startColumn": 5,
                  "endColumn": 46
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'ctp' points/refers to a non-const type 'message_context_t' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 63,
                  "endColumn": 66
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "6300661ca69dede6:1",
            "primaryLocationStartColumnFingerprint": "62"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 199,
                  "startColumn": 5,
                  "endColumn": 43
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'ctp' points/refers to a non-const type 'message_context_t' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 43,
                  "endColumn": 60
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "71ea3aa2c37d6364:1",
            "primaryLocationStartColumnFingerprint": "42"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 182,
                  "startColumn": 5,
                  "endColumn": 42
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'poll' points/refers to a non-const type 'PollEndpoint' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 395,
                  "startColumn": 96,
                  "endColumn": 100
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "5f2c629ed2273940:1",
            "primaryLocationStartColumnFingerprint": "87"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 395,
                  "startColumn": 81,
                  "endColumn": 82
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'poll' points/refers to a non-const type 'PollEndpoint' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 312,
                  "startColumn": 102,
                  "endColumn": 106
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "bd205509048ccc1a:1",
            "primaryLocationStartColumnFingerprint": "97"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 312,
                  "startColumn": 87,
                  "endColumn": 88
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'poll' points/refers to a non-const type 'PollEndpoint' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 261,
                  "startColumn": 101,
                  "endColumn": 105
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "c788b149f779c7f1:1",
            "primaryLocationStartColumnFingerprint": "92"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/message_passing/qnx_dispatch/qnx_dispatch_engine.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 261,
                  "startColumn": 86,
                  "endColumn": 87
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'proxy_method' points/refers to a non-const type 'ProxyMethod' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 81,
                  "endColumn": 93
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d38eaf5de78536cd:1",
            "primaryLocationStartColumnFingerprint": "80"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/proxy.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 934,
                  "startColumn": 6,
                  "endColumn": 27
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'long_running_threads' points/refers to a non-const type 'Executor' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "startColumn": 71,
                  "endColumn": 91
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "89f0310256b93afd:1",
            "primaryLocationStartColumnFingerprint": "70"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/service_discovery/client/service_discovery_client.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 81,
                  "endColumn": 47
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'skeleton_method' points/refers to a non-const type 'SkeletonMethod' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 87,
                  "endColumn": 102
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "94b7431be5ed28cd:1",
            "primaryLocationStartColumnFingerprint": "86"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/bindings/lola/skeleton.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 560,
                  "startColumn": 6,
                  "endColumn": 30
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 65,
          "rule": {
            "id": "cpp/misra/pointer-or-ref-param-not-const",
            "index": 148
          },
          "message": {
            "text": "Parameter 'base' points/refers to a non-const type 'ProxyBase' but does not modify the target object in the [function definition](1)."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "startColumn": 49,
                  "endColumn": 53
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "d6c5c75740ae7b51:1",
            "primaryLocationStartColumnFingerprint": "48"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/generic_proxy_event.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 22,
                  "endColumn": 37
                }
              },
              "message": {
                "text": "function definition"
              }
            }
          ]
        },
        {
          "ruleIndex": 66,
          "rule": {
            "id": "cpp/misra/invalid-signature-for-special-member-function",
            "index": 88
          },
          "message": {
            "text": "Copy assignment operator on type [OffsetPtr<PointedType>](1) should be lvalue-qualified.\nCopy assignment operator on type [OffsetPtr<TransactionLogSlot>](2) should be lvalue-qualified."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 436,
                  "startColumn": 30,
                  "endColumn": 31
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "75c757c8c18ba2e3:1",
            "primaryLocationStartColumnFingerprint": "29"
          },
          "relatedLocations": [
            {
              "id": 1,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<PointedType>"
              }
            },
            {
              "id": 2,
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/memory/shared/offset_ptr.h",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 132,
                  "startColumn": 7,
                  "endColumn": 16
                }
              },
              "message": {
                "text": "OffsetPtr<TransactionLogSlot>"
              }
            }
          ]
        },
        {
          "ruleIndex": 67,
          "rule": {
            "id": "cpp/misra/no-character-numerical-value",
            "index": 110
          },
          "message": {
            "text": "Conversion of character type 'char' to 'int' uses numerical value of character."
          },
          "locations": [
            {
              "physicalLocation": {
                "artifactLocation": {
                  "uri": "score/mw/com/impl/instance_specifier.cpp",
                  "uriBaseId": "%SRCROOT%"
                },
                "region": {
                  "startLine": 40,
                  "startColumn": 45,
                  "endColumn": 50
                }
              }
            }
          ],
          "partialFingerprints": {
            "primaryLocationLineHash": "b649725ce0980d92:1",
            "primaryLocationStartColumnFingerprint": "40"
          }
        }
      ],
      "columnKind": "utf16CodeUnits",
      "properties": {
        "semmle.formatSpecifier": "sarifv2.1.0"
      }
    }
  ]
}